python 2.7 和3.0input区别时间:2022-08-17 18:33:31 name = raw_input('请输入用户名:')#python2.7的用法 name = input('请输入用户名:')#python3.0的用法 print(name)