Write a function that takes a name and a number, then prints the name that many times.
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
Here’s a simple Python function that takes a name and a number, then prints the name that many times:
This function uses a
for
loop to print the name the specified number of times. Let me know if you need modifications! 🚀def repeat(name, n): for i in range(n): print(name)
name=input("Enter Name: ") n= input("Enter number: ")
repeat(name,n)