Beginner Programmer here. I\'m trying to write a program that will ask a user for a quiz grade until they enter a blank input. Also, I\'m trying to get the input to go from disp
Use .format, e.g.:
count = 0 while grade != "" : count += 1 grade = input('quiz {}:'.format(count))