>> only_letters("he7lo") False 最佳答-6ren">
gpt4 book ai didi

python - 如何检查字符串是否只包含字母?

转载 作者:IT老高 更新时间:2023-10-28 21:40:48 24 4
gpt4 key购买 nike

我正在尝试检查一个字符串是否只包含字母,而不是数字或符号。

例如:

>>> only_letters("hello")
True
>>> only_letters("he7lo")
False

最佳答案

简单:

if string.isalpha():
print("It's all letters")

str.isalpha()仅当字符串中的所有个字符都是字母时才为真:

Return true if all characters in the string are alphabetic and there is at least one character, false otherwise.

演示:

>>> 'hello'.isalpha()
True
>>> '42hello'.isalpha()
False
>>> 'hel lo'.isalpha()
False

关于python - 如何检查字符串是否只包含字母?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18667410/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com