I would like to know if there is some sort of command or function that I can import that would allow me to run a command multiple times based on the value of an input. That might not make any sense but hopefully it will from this ↓
num_of_rounds = input(int("type the amount of rounds you want to play"))
for num_of_rounds:
print("test")
This isn't working for me and I don't know how to make it work.