if statement with two conditions in Python

蓝咒 提交于 2019-12-02 06:06:11

You can construct the list of elements for which the if condition should evaluate to Truthy, and then use in operator like this, to check if choice1's value is in that list of elements, like this

if choice1 in ['1', 'Coherent']:
...
elif choice1 in ['2', 'Clastic']:
...

Instead of lists, you can use tuples as well

if choice1 in ('1', 'Coherent'):
...
elif choice1 in ('2', 'Clastic'):
...

If the list of items to be checked is huge, then you can construct a set like this

if choice1 in {'1', 'Coherent'}:
...
elif choice1 in {'2', 'Clastic'}:
...

sets offer faster lookup than lists or tuples. You can create sets with set literal syntax {}

if choice1 in ('1', 'Coherent'):
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!