Difference between revisions of "If ... Else in Python"
Jump to navigation
Jump to search
(Created page with " --------------------------------------------------- https://www.w3schools.com/python/python_conditions.asp") |
|||
Line 1: | Line 1: | ||
+ | Python Conditions and If statements | ||
+ | Python supports the usual logical conditions from mathematics: | ||
+ | |||
+ | Equals: a == b | ||
+ | |||
+ | Not Equals: a != b | ||
+ | |||
+ | Less than: a < b | ||
+ | |||
+ | Less than or equal to: a <= b | ||
+ | |||
+ | Greater than: a > b | ||
+ | |||
+ | Greater than or equal to: a >= b | ||
+ | |||
+ | These conditions can be used in several ways, most commonly in "if statements" and loops. | ||
+ | |||
+ | An "if statement" is written by using the "if" keyword. | ||
+ | |||
--------------------------------------------------- | --------------------------------------------------- | ||
https://www.w3schools.com/python/python_conditions.asp | https://www.w3schools.com/python/python_conditions.asp |
Revision as of 14:55, 28 August 2024
Python Conditions and If statements Python supports the usual logical conditions from mathematics:
Equals: a == b
Not Equals: a != b
Less than: a < b
Less than or equal to: a <= b
Greater than: a > b
Greater than or equal to: a >= b
These conditions can be used in several ways, most commonly in "if statements" and loops.
An "if statement" is written by using the "if" keyword.