繁体   English   中英

如何在 pyhton 中为输入打印多个变量?

[英]How can I print more than one variable for an input in pyhton?

我是一个初学者,基本上我想做的是一个程序,它在检查后读取一个字符串并显示适当的消息:

a. 只包含字母

b. 仅包含大写字母

c.仅包含小写字母

d. 仅包含数字

e.仅包含字母和数字

f.以大写字母开头

g.以点结尾

msg = input("Please enter your message: ")

if msg.isalpha() == True:
    aux = "Your message contains only letters."
    print(aux)

elif msg.isupper() == True:
    print("Your message contains only uppercase letters.")

elif msg.islower() == True:
    aux = "Your message contains only lowercase letters."
    print(aux)

elif  msg.isdigit() == True:
    print("Your message contains only digits.")

elif  msg.isalpha() and msg.isdecimal() == True:
    print("Your message contains only letters and numbers.")

elif  msg.capitalize() == True:
    print("Your message begins with a capital letter.")

elif  msg.endswith(".") == True:
    print("Your message ends with a dot.")

那是我的代码,但它只打印我创建的一两个变量。 例如,当我输入“ABCD123”时,它会打印出消息只包含大写字母,但我也希望它打印出我的消息包含字母和数字。

您的代码只会打印其中一个输出,因为您使用的是“elif”。 从您的问题来看,您似乎希望使用单独的 if 语句来避免条件检查一旦满足就会中断。 如:

if msg.isalpha() == True: aux = "Your message contains only letters." print(aux)

if msg.isupper() == True: print("Your message contains only uppercase letters.")

if msg.islower() == True: aux = "Your message contains only lowercase letters." print(aux)

您应该使用 if 而不是 elif。 在这种情况下,一旦您输入第一个“if”,程序就会停止并且不会检查您使用 elif 设置的其他条件。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM