관리 메뉴

Silver Library (Archived)

Python If, else 본문

Personal DB

Python If, else

Chesed Kim 2021. 2. 23. 13:07
반응형

 

 

Python Conditions

Python If ... Else 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 Thes

www.w3schools.com