** * This article is from Udemy "[Introduction to Python3 taught by active Silicon Valley engineers + application + American Silicon Valley style code style](https://www.udemy.com/course/python-beginner/" Introduction to Python3 taught by active Silicon Valley engineers + application + American Silicon Valley style code style ")" It is a class notebook for myself after taking the course of. It is open to the public with permission from the instructor Jun Sakai. ** **
operator
#a is equal to b
a == b
#a is different from b
a != b
#a is less than b
a < b
#a is greater than b
a > b
#a is less than or equal to b
a <= b
#a is b or more
a >= b
# a >0 and b> 0
a > 0 and b > 0
# a >0 or b> 0
a > 0 or b > 0
Recommended Posts