Counting Up
Loop from low to high.
Counting Up 📈
Let us count up from a low number to a high one using range with a start! 🚀
Start and Stop 🎯
range(2, 6) counts 2, 3, 4, 5. It starts at 2 and stops before 6.
for i in range(2, 6):
print(i)Loop from low to high.
Let us count up from a low number to a high one using range with a start! 🚀
range(2, 6) counts 2, 3, 4, 5. It starts at 2 and stops before 6.
for i in range(2, 6):
print(i)