可以使用isalpha()
方法和isdigit()
方法来判断字符串是否全为字母或数字。下面是一个示例代码:
def is_alpha_or_digit(s):
return s.isalpha() or s.isdigit()
# 测试
print(is_alpha_or_digit("hello123")) # False
print(is_alpha_or_digit("hello")) # True
print(is_alpha_or_digit("123")) # True
在上面的示例中,is_alpha_or_digit()
函数接受一个字符串作为参数,然后使用isalpha()
方法和isdigit()
方法来判断该字符串是否全为字母或数字。如果字符串全为字母或数字,则返回True,否则返回False。