A while loop is usually not infinite in Python. It only executes a code block repeatedly as long as the given condition is satisfied. The right-hand side of the expression gets evaluated first, and then the value is assigned to a variable. If the given loop condition is False, the loop is terminated or a different set of code is executed.Â
For example:
p = int(input('Enter your age: '))
while p < 19 or p > 60:
print('You are too young or too old to ride!')
else:
print('Welcome, you are of the right age!')
Program execution:
Enter your age: 45
Welcome, you are of the right age!
Related Questions
- How do you write first code in Python?
- How do you write an infinite loop in Python?
- How do you write a matrix in python?
- What are Python namespaces why are they used?
- How do I write a Python script?
- How do you write a 3×3 matrix in python?
- How do you create a namespace in Python?
- How do you make an infinite while loop?
- How do you create a matrix list in Python?
- What is datatype in Python?
- Which software is best for Python programming?
- Why is my FOR LOOP infinite Python?
- Which is not valid namespace in Python?
- How many datatypes are there in Python?
Related Topics
- Python Programming
- 9 Best Python IDEs and Code Editors
- Python Input-Output (I/O) Using input() and print() Function
- List of Keywords in Python Programming
- Python Keywords and Identifiers (Variable names)
- Python List Comprehension (With Examples)
- Python Looping Techniques
- Python Main Function
- Python Matrix and Introduction to NumPy
- Python Namespace and Scope of a Variable
- Python PIP
- Python Statement, Indentation, and Comments
- Python Type Conversion and Type Casting (With Examples)
- Python Variables, Constants, and Literals
- Python Data Types
Leave a Reply