Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有问题。我必须编写一个程序来询问名字并保存它,然后它必须询问姓氏并做同样的事情,然后它必须在两行中写下名字和姓氏,如下所示:
enter first name: x enter last name: y x y
对于第一部分,我使用 raw_input 并将数据存储在 firstName 和 lastName 中,但我现在真的不知道如何到达最后一部分。也许写这两个变量会有所帮助,但我不认为它要求来自意大利的问候
只需简单地打印字符串。
firstStr = 'hello' secondStr = 'world' print my_str print secondStr
请参阅printPython 内置。并真正开始阅读有关该语言的任何参考文本。
print