Skip to content

Latest commit

 

History

History
7 lines (6 loc) · 116 Bytes

File metadata and controls

7 lines (6 loc) · 116 Bytes

A for loop is a loop that iterative a fixed amount of time.

Example :

for i in range(10):
	print(i)