#Write a program that first reads the number of courses student will take in #Spring 21. For each course, the program reads the number of credits and finds #the total number of credits student will take in Spring 21. To be considered a #full time, student must take at least 12 credits per semester. The program #prints if the student is a full time or not. YOU HAVE TO USE LOOP FOR IN THIS #PROGRAM. def main(): num_courses=int(input("enter number of courses ")) total=0 for i in range(num_courses): credits=float(input("enter number of credits ")) total=total+credits print("total number of credits", total) if(total>=12): print("you are full time") else: print("you are not full time") main()