Write the Python program to accept name from the user and display it ten times
on the screen.
Answers
Answered by
0
Step-by-step explanation:
ffghhjbvczAsssertfuhvcxddffdds
Answered by
0
Answer:
name = input("What's your name?? ")
print(10 * name )
Step-by-step explanation:
using loop
name = input("What's your name??")
print(*(name for i in range(10)), sep='\n')
name = input("What's your name??")
print(10 * (name + '\n'))
Similar questions
CBSE BOARD XII,
2 months ago
Science,
2 months ago
English,
2 months ago
English,
4 months ago
Accountancy,
4 months ago
Math,
9 months ago