Computer Science, asked by hkadposehore, 7 days ago

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 hypernovicgamer
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