Complete the following program: Program to input the name of your pet, also input number of times you want to print it on the screen. f=input(“enter your pet's name”) n=__________________________ for _________________________ print(c,f)
Answers
Answered by
0
Explanation:
f= input("enter your pet's name")
n = int(input("Enter number of times you want to print it"))
print(f * n)
Similar questions