码迷,mamicode.com
首页 > 其他好文 > 详细

raw_input与input

时间:2017-09-05 20:51:28      阅读:93      评论:0      收藏:0      [点我收藏+]

标签:pre   版本   内容   python3.5   hello   prompt   div   col   一个   

python2.7版本中等待用户输入内容的函数是raw_input

1 a = raw_input(">>>")
2 print a

“>>>”为提示信息,我随便写了一个,运行并输入hello world

输出结果:

>>>hello world
hello world

 

python3.5版本中等待用户输入内容的函数是input,3.5版本中移除了raw_input这个函数

a = input(">>>")
print a

操作过程与2.7版本无异

PS:输入时的提示信息也可以使用变量来代替,例如:

1 prompt = ">>>"
2 a = raw_input(prompt)
3 print a

raw_input与input

标签:pre   版本   内容   python3.5   hello   prompt   div   col   一个   

原文地址:http://www.cnblogs.com/zhangzengqiang/p/7481712.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!