2 Answers
+ 6
In Python, you can do it in both ways as well.
60 < x < 70 or
60 < x and x < 70
`&&` operator is known as logical and operator in other languages while Python just uses `and`
+ 2
Lenoname
there is no && operator in Python, try using google too, see what I found:
https://stackoverflow.com/questions/2485466/pythons-equivalent-of-logical-and-in-an-if-statement