raw_input与input
Posted 萌萌哒小强儿
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了raw_input与input相关的知识,希望对你有一定的参考价值。
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的主要内容,如果未能解决你的问题,请参考以下文章