String Repetition - 4
This Program name is String Repetition - 4. Write a Python program is String Repetition - 4, it has two test cases
The below link contains String Repetition - 4 - question, explanation and test cases
https://drive.google.com/file/d/1n4TSeGRbdbrEgeIKfXO5bq_IF3CWQ0jY/view?usp=sharing
We need exact output when the code was run
m = input()
n=int(input())
for row in range(n):
print(m,end = ' ')
Comments
Leave a comment