当前分类:300例题>>正文

Python示例:检查字符是元音还是辅音

来源:互联网   更新时间:2023年6月20日  

Python 示例

写一个 Python示例来检查字符是元音还是辅音,并给出一个实例。

Python示例检查字符是元音还是辅音

这个 python 程序允许用户输入任何字符。接下来,我们使用 If Else 语句来检查用户给定的字符是元音还是辅音。

这里, If 语句检查字符是否等于 A、E、I、O、u、A、E、I、O、u,如果为 TRUE,则为元音。否则就是辅音。

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

if(ch == 'a' or ch == 'e' or ch == 'i' or ch == 'o' or ch == 'u' or ch == 'A'
       or ch == 'E' or ch == 'I' or ch == 'O' or ch == 'U'):
    print("The Given Character ", ch, "is a Vowel")
else:
    print("The Given Character ", ch, "is a Consonant")

使用 ASCII 值验证字符是元音还是辅音的 Python示例

在这个 Python 的例子中,我们使用 ASCII 值来检查给定的字符是元音还是辅音。

ch = input("Please Enter Your Own Character : ")

if(ord(ch) == 65 or ord(ch) == 69 or ord(ch) == 73
       or ord(ch) == 79 or ord(ch) == 85
       or ord(ch) == 97 or ord(ch) == 101 or ord(ch) == 105
       or ord(ch) == 111 or ord(ch) == 117):
    print("The Given Character ", ch, "is a Vowel")
elif((ord(ch) >= 97 and ord(ch) <= 122) or (ord(ch) >= 65 and ord(ch) <= 90)):
    print("The Given Character ", ch, "is a Consonant")
Please Enter Your Own Character : E
The Given Character  E is a Vowel
>>> 
Please Enter Your Own Character : l
The Given Character  l is a Consonant
本文固定链接:https://6yhj.com/leku-p-4344.html  版权所有,转载请保留本地址!
[猜你喜欢]

标签: 算法