I'm beginner on python, and i tried to repeat my python command from line 3 until line 7 on this code
print("Hello")
print("World")
print("Foo")
print("Foo")
print("Foo")
print("Foo")
print("Foo")
but i don't want to repeat that foo for 4 times, i want to make it shorter like this
print("Hello")
print("World")
print("Foo")
print ln 3 * 4 times again
but it did't work(yeah i know it supposed to be not worked)
to someone who knows or can give the solution please help me, thanks!