Answers for "print using multiply only"

0

print using multiply only

#prints meowmeowmeow
print("meow" * 3)

#adds next line print meow meow meow on each line end="" removes last blank line
print("meow\n" * 3 end="")
Posted by: Guest on April-15-2022

Python Answers by Framework

Browse Popular Code Answers by Language