for loops on python code example
Example: python for loop
for i in range(5):
print(i)
# Output:
# 0
# 1
# 2
# 3
# 4
my_list = ["a", 1, True, 4.0, (0, 0)]
for i in my_list:
print(i)
# Output:
# a
# 1
# True
# 4.0
# (0, 0)
for i in range(5):
print(i)
# Output:
# 0
# 1
# 2
# 3
# 4
my_list = ["a", 1, True, 4.0, (0, 0)]
for i in my_list:
print(i)
# Output:
# a
# 1
# True
# 4.0
# (0, 0)