Python的输入
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python的输入相关的知识,希望对你有一定的参考价值。
在python2.x里的raw_input()和python3.x里的input()是一样的。
# 在python2.x里 str = raw_input("hello world!") print str 显示结果:hello world! # 在python3.x里 str = input("hello world!") print(str) 显示结果:hello world!
引申字符串拼接问题
以上是关于Python的输入的主要内容,如果未能解决你的问题,请参考以下文章