How to make it shorter (Pythonic)?

前端 未结 6 799
半阙折子戏
半阙折子戏 2021-02-15 16:56

I have to check a lot of worlds if they are in string... code looks like:

if \"string_1\" in var_string or \"string_2\" in var_string or \"string_3\" in var_stri         


        
6条回答
  •  予麋鹿
    予麋鹿 (楼主)
    2021-02-15 17:46

    import re
    if re.search("string_1|string_2|string_n", var_strings): print True
    

    The beauty of python regex it that it returns either a regex object (that gives informations on what matched) or None, that can be used as a "false" value in a test.

提交回复
热议问题