Python程序:检查字符是否是字母

创新互联python教程:

用一个实际例子写一个 Python 程序来检查字符是否是字母。

Python 程序检查字符是否是字母

这个 python 程序允许用户输入任何字符。接下来,我们使用 If Else 语句来检查用户给定的字符是否是字母表。这里 If 语句检查字符是在 A 和 z 之间还是在 A 和 z 之间,如果是 TRUE,则是字母表;否则,它就不是字母表。

# Python Program to check character is Alphabet or not
ch = input("Please Enter Your Own Character : ")

if((ch >= 'a' and ch <= 'z') or (ch >= 'A' and ch <= 'Z')):
    print("The Given Character ", ch, "is an Alphabet")
else:
    print("The Given Character ", ch, "is Not an Alphabet")

Python 字符是字母还是不输出

Please Enter Your Own Character : q
The Given Character  q is an Alphabet
>>> 
Please Enter Your Own Character : 8
The Given Character  8 is Not an Alphabet

Python 程序使用 ASCII 值验证字符是否是字母

在这个 Python 代码中,我们使用 If Else 语句中的 ASCII 值来检查字符是否是字母表。

# Python Program to check character is Alphabet or not
ch = input("Please Enter Your Own Character : ")

if((ord(ch) >= 65 and ord(ch) <= 90) or (ord(ch) >= 97 and ord(ch) <= 122)):
    print("The Given Character ", ch, "is an Alphabet")
else:
    print("The Given Character ", ch, "is Not an Alphabet")
Please Enter Your Own Character : W
The Given Character  W is an Alphabet
>>> 
Please Enter Your Own Character : #
The Given Character  # is Not an Alphabet

寻找字符的 Python 程序是使用 isalpha 函数的字母表

在这个例子 python 代码中,我们使用 isalpha 字符串函数来检查给定的字符是否是字母表。

# Python Program to check character is Alphabet or not
ch = input("Please Enter Your Own Character : ")

if(ch.isalpha()):
    print("The Given Character ", ch, "is an Alphabet")
else:
    print("The Given Character ", ch, "is Not an Alphabet")

本文名称:Python程序:检查字符是否是字母
新闻来源:http://www.shufengxianlan.com/qtweb/news47/370147.html

网站建设、网络推广公司-创新互联,是专注品牌与效果的网站制作,网络营销seo公司;服务项目有等

广告

声明:本网站发布的内容(图片、视频和文字)以用户投稿、用户转载内容为主,如果涉及侵权请尽快告知,我们将会在第一时间删除。文章观点不代表本网站立场,如需处理请联系客服。电话:028-86922220;邮箱:631063699@qq.com。内容未经允许不得转载,或转载时需注明来源: 创新互联