May-24-2018, 06:32 PM
1 2 3 4 5 6 7 8 9 |
# Your code below... name = " " number_of_names = int ( input ( "How many names do you have: " )) for i in range (number_of_names): next = input ( "Enter Your Name: " ) name = name + next print ( "Your name is:" + name) |
I get the following return:
How many names do you have: 3
Enter Your Name: Bob
Enter Your Name: tim
Enter Your Name: Tom
Your name is: BobtimTom