How to code a loop that asked user to input several student name and print out the name.
1st the use is requested to input how many student name to enter and it loops the number enter asking for the student name.
Please see the code below. My challenge is to include in the loop.
n = eval(input("How many student do you have to enter: "))
a = (input("Enter the student name: "))
print (a)