0
Python related
For i in range(20) Print("hello") Not working
2 Answers
+ 5
for i in range(20):
print("hello")
You don't capitalize for, there is no colon at the end of the for function, and you indent the next line, and print does not get capitalized.
+ 4
Indentation and a colon missing
I suggest you to check out intro to python course:-
https://www.sololearn.com/learn/courses/python-introduction