是否有一种直接的方法可以确定字符串的所有字符是否都属于给定的字符集?我有以下循环代码,我觉得可以缩短:
def allInSet(mystr, myset):
result = True
for char in mystr:
result &= (char in myset)
return result
例子:
>>> allInSet("yyyow", set(['a','e','i','o','u','w','y']))
True
>>> allInSet("yowza", set(['a','e','i','o','u','w','y']))
False
也,list(mystr) in set(['a','b','c'])
没有工作。