在字符串中查找特定字符

时间:2013-11-24 06:17:33

标签: python string

我正在尝试创建一个接受字符串输入的函数,并检查它是否有“=”或“>”在其中,然后在“=”或“>”上将内置字符串方法“strip”应用于其后返回列表。为了做到这一点,我正在写一个if和elif语句。

def split_list_math(a_str):
    if(contains("=") == True):
        a_str2 = a_str.split("=")
    elif(contains(">") == True):
        a_str2 = a_str.split(">")
    return a_str2

我可以在代码中替换“包含”以使此功能正常工作吗?

1 个答案:

答案 0 :(得分:2)

使用in运算符:

if "=" in a_str:

<强>演示:

>>> '=' in '!@#$%^'
False
>>> '=' in '=-0987'
True