Answer:
students = int(input("How many students? "))
for i in range(students):
credits = int(input("Enter credits: "))
if credits <= 12:
tuition = credits * 525
else:
tuition = 6300
print("Tuition is $%.2f" % tuition)
Step-by-step explanation:
Ask the user to enter the number of students
Create a for loop that iterates for each student
Ask the user to enter the credits
Check the credits. If it is smaller than or equal to 12, calculate the tuition as credits * 525. Otherwise, set the tuition as 6300
Print the tuition