Complete the missing code – (the selection structure) based…
Complete the missing code – (the selection structure) based on the algorithm def main(): #Decalre and initialize whole variable for number of credits left to do creditsLeft = 0 #Prompt user for how many credits they have left to complete creditsLeft = int(input(“How many credits do you have left to complete? “)) #If the user has 15 or less credits left to complete display “You have only 1 semester left!” #Else If the user has between 16 and 30 credits left to complete, display “You should have only 2 semesters left!” #Else If the user has between 31 and 45 credits left to complete, display “You have about 3 semesters left – Keep working!” #Else If the user has 46 credits or more left to complete display “I guess this is your first semester.”
Read Details