python如何判断工作表名字里的内容是否包含了一串字符串里的所有内容愁了两个小时还没想出来该怎么弄
worksheet_name = 'My Worksheet' if all(x in worksheet_name for x in 'Work'): print('Yes') else: print('No')