+ 3
What are the Comparison Operators In Python?
==,!=,>=,<=,<,> Any More ?
2 odpowiedzi
+ 5
Thank You #Pierree Geier
+ 2
No. There isn't something like === (You might know that from php) But you have <> as well, which is a alias for !=.
But Python has different types of operators like "is":
if spam is False:
.....