Ask Your Question
3

What is the order of priority for the in operator and comparison operators in Python?

asked 2023-01-27 11:00:00 +0000

david gravatar image

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
3

answered 2021-04-14 02:00:00 +0000

djk gravatar image

The in operator has a lower priority than comparison operators in Python. This means that comparison operators (such as <, >, <=, >=, ==, !=) will be evaluated before the in operator. Therefore, if a statement contains both comparison operators and the in operator, the comparison operators will be evaluated first.

edit flag offensive delete link more

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account. This space is reserved only for answers. If you would like to engage in a discussion, please instead post a comment under the question or an answer that you would like to discuss

Add Answer


Question Tools

Stats

Asked: 2023-01-27 11:00:00 +0000

Seen: 16 times

Last updated: Apr 14 '21