我正在尝试使用 .pop 检查 pangram 并具有以下代码,但得到错误“'str' object has no attribute 'pop'”。我是编程新手。请帮忙。
import string
def ispangram(str1, alphabet=string.ascii_lowercase):
for x in str1:
if x in alphabet:
alphabet.pop[0]
else:
pass
return len(alphabet)==0