Python
# Example of for loop
fruits = ['apple', 'banana', 'orange']
for fruit in fruits:
    print(fruit)
    
# Example of while loop
count = 1
while count <= 5:
    print("Count:", count)
    count += 1