要检查列表<string>是否包含任何字符串值,可以使用以下方法:
方法1:使用Python的内置函数
list_of_strings = ['string1', 'string2', 'string3']
if any(list_of_strings):
print("列表包含字符串值")
else:
print("列表不包含字符串值")
方法2:使用Python的len()函数
list_of_strings = ['string1', 'string2', 'string3']
if len(list_of_strings) > 0:
print("列表包含字符串值")
else:
print("列表不包含字符串值")
在这两种方法中,如果列表包含任何字符串值,则会输出"列表包含字符串值",否则输出"列表不包含字符串值"。
领取专属 10元无门槛券
手把手带您无忧上云