我正在转向 Python,并且对 Pythonic 方法还比较陌生。我想编写一个函数,它接受一个字符串和一个列表,如果列表中的所有元素都出现在字符串中,则返回 true。
这看起来相当简单。但是,我面临一些困难。代码是这样的:
def myfun(str,list):
for a in list:
if not a in str:
return False
return True
Example : myfun('tomato',['t','o','m','a']) should return true
myfun('potato',['t','o','m','a']) should return false
myfun('tomato',['t','o','m']) should return true
另外,我希望有人可以在这里提出一种可能的正则表达式方法。我也在尝试他们。