Quiz: Loops

Expand login sectionLog in
Track your progress

Progress: Problem 1 of 13

What does this code print?

for x in range(4):
	print("Hello")
The word Hello 3 times
Nothing, it won't run
The word Hello 5 times
It will print nothing
The word Hello 4 times
It will print Hello forever
Check Answer