Is there a way to make variables with a for
statement using the variable from the for
statement in order to add a number to the end of the variable name?
Here is an example of what I'm trying to achieve:
for i in range(1,9):
grade+i = round(float(input(firstprompt)))
type+i = input(secondprompt)