# Iterating over a string
text = "Python"
for char in text:
print(f"Character: {char}")
# Example: Using range to iterate from 0 to 4
for i in range(5):
print(i)
# Example: Iterating from 1 to 10 with a step of 2
for i in range(1, 11, 2):