Loops
Types of Loops:
Example of For Loop:
for i in range(1, 6): #Iterate from 1-5, 6 is excluded.
print(i)Output:
1
2
3
4
5Last updated
for i in range(1, 6): #Iterate from 1-5, 6 is excluded.
print(i)Output:
1
2
3
4
5Last updated
while True:
user_input = input("Type something (or 'quit' to stop): ")
if user_input.lower() == "quit":
print("Goodbye!")
break # Exit the loop
print(f"You typed: {user_input}")Output:
Type something (or 'quit' to stop): hello
You typed: hello
Type something (or 'quit' to stop): python
You typed: python
Type something (or 'quit' to stop): quit
Goodbye!