Skip to content

jlesca/python-conditions

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 

Repository files navigation

Python Conditions 🐍

Working with logical operators in Python.

OperatorSymbol
Equalsa == b
Not Equals a != b
Less thana < b
Less than or equal toa <= b
Grater thana > b
Grater than equal toa >=b

Can be used with "If statements" and loops.