首页 > 代码库 > Python的输入

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的输入