Math, asked by Sunitaanshu, 4 months ago

Write the Python program to accept name from the user and display it ten times

on the screen.​

Answers

Answered by kumariswatinayan0101
0

Step-by-step explanation:

ffghhjbvczAsssertfuhvcxddffdds

Answered by sukki120599
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