Python读取键盘输入的2种方法
Python提供了两个内置函数1.raw_input、2.input从标准输入读入一行文本,默认的标准输入是键盘。接下来分别看下两者之间的用法和区别:
一、raw_input函数
raw_input() 函数从标准输入读取一个行,并返回一个字符串(去掉结尾的换行符):
1str = raw_input("Enter your input: ");
2print "Received input is : ", str
这将提示你输入任意字符串,然后在屏幕上显示相同的字符串。当我输入”Hello www.361way.com!”,它的输出如下:
1Enter your input: Hello www.361way.com!
2Received input is : Hello www.361way.com!
二、input函数
input() 函数和raw_input() 函数基本可以互换,但是input会假设你的输入是一个有效的Python表达式,并返回运算结果。这应该是两者的最大区别。
1str = input("Enter your input: ");
2print "Received input is : ", str
当我执行如下的输入内容时,看下其输出结果:
1Enter your input: [x*5 for x in range(2,10,2)]
2Recieved input is : [10, 20, 30, 40]
所以从安全的角度来说,raw_input更安全,因为是原内容输入和输出。input是在一些有这种特殊需求的场景里更好一些。具体情况用具体的函数吧。
捐赠本站(Donate)
如您感觉文章有用,可扫码捐赠本站!(If the article useful, you can scan the QR code to donate))
- Author: shisekong
- Link: https://blog.361way.com/python-input/6237.html
- License: This work is under a 知识共享署名-非商业性使用-禁止演绎 4.0 国际许可协议. Kindly fulfill the requirements of the aforementioned License when adapting or creating a derivative of this work.