我有这个代码:
ALPHABET = string.ascii_uppercase + string.digits + ' _'
def is_correct(mystr):
# check if the characters in mystr belong to the ALPHABET
# return True or False
我会做的是:
- 获取 mystr 的字母:
alphabet1
- 检查是否所有字符
alphabet1
都在 ALPHABET
但我不知道该怎么做 1) 如何获取给定字符串的字母表?以及如何知道是否alphabet1
在ALPHABET
?