我是大学一年级的学生,正在上python编码课。目前,我正致力于让一个程序根据用户的输入来计算元音或辅音的数量来确定模式。

目前,我已经列出了两个列表,我正试图找出如何编程python来计算元音/辅音。

这就是我到目前为止所拥有的——请记住,我在两端都做过工作,中心就是计数的地方。#=======================================#

#Zane Blalock's Vowel/Consonants Counter#

#=======================================#

print("Welcome to the V/C Counter!")

#Make List

vowels = list("aeiouy")

consonants = list("bcdfghjklmnpqrstvexz")

complete = False

while complete == False:

mode = input("What mode would you like? Vowels or Consonants?: ").lower().strip()

print("")

print("You chose the mode: " + str(mode))

print("")

if mode == "vowels":

word = input("Please input a word: ")

print("your word was: " + str(word))

print("")

choice = input("Are you done, Y/N: ").lower().strip()

if choice == "y":

complete = True

else:

print("Ok, back to the top!")

elif mode == "consonants":

word = input("please input a word: ")

print("your word was: " + str(word))

print("")

choice = input("Are you done, Y/N: ").lower().strip()

if choice == "y":

complete = True

else:

print("Ok, back to the top!")

else:

print("Improper Mode, please input a correct one")

print("Thank you for using this program")

Logo

腾讯云面向开发者汇聚海量精品云计算使用和开发经验,营造开放的云计算技术生态圈。

更多推荐