如何使输入以大写形式显示

时间:2015-12-14 04:30:17

标签: python-3.4

这就是我尝试这个程序的方式,

usersName = input.upper('what is your name and your last name ? ')

我希望它能够做到这一点。

message = 'Hello world'
print (message.upper())

3 个答案:

答案 0 :(得分:0)

您想要转换输入命令的输出,并且提示符是input的参数,而不是upper,因此您的代码看起来应该更像这样:

    usersName = input('what is your name and your last name ? ').upper()

答案 1 :(得分:0)

我不确定你究竟是什么意思,但我想你想把这个名字存储为大写?

在这种情况下,你想要

usersName = input('what is your name and your last name ? ').upper()

因为upper是str的成员,而不是输入。

答案 2 :(得分:0)

我更多地考虑大写而非大写。

usersName = input('你的名字是什么?')

userslastName = input('你的姓氏是什么?')

usersName = usersName.capitalize()

userslastName = userslastName.capitalize()

打印(usersName)

打印(userslastName)