Computer Science, asked by Sonali6739, 4 months ago

Write a command in Python to print your name on screen 5 times using only one print command.

Answers

Answered by rani12345213
0

Answer:

A = "Ridham"(say any name )

print(A*5)

Explanation:

'*' this symbol is called the replication symbol of string operators which is used to replicate the data or a value given in a variable.

Similar questions