• 技术文章 >常见问题 >Python常见问题

    python在哪里能输入

    silencementsilencement2019-11-12 10:56:07原创2021

    raw_input函数(Python2)

    raw_input() 函数从标准输入读取一个行,并返回一个字符串(去掉结尾的换行符):

    str = raw_input("Enter your input: ");
    print "Received input is : ", str

    这将提示你输入任意字符串,然后在屏幕上显示相同的字符串。当我输入"Hello Python!",它的输出如下:

    Enter your input: Hello Python
    Received input is :  Hello Python

    python学习网,免费的python学习网站,欢迎在线学习

    input函数(Python3)

    input() 函数和raw_input() 函数基本可以互换,但是input会假设你的输入是一个有效的Python表达式,并返回运算结果。这应该是两者

    的区别。

    str = input("Enter your input: ");
    print "Received input is : ", str

    这会产生如下的对应着输入的结果:

    Enter your input: [x*5 for x in range(2,10,2)]
    Recieved input is :  [10, 20, 30, 40]

    注意事项:

    因为input()会把输入当成python脚本来处理,所以如果输入字符串类型的变量,要记得加引号,如‘abc’!

    专题推荐:input
    上一篇:python的注释一般放在什么位置 下一篇:python如何判断输入是不是数字

    相关文章推荐

    • Python fileinput模块:逐行读取多个文件• python中input是什么意思• python3下的input函数怎么用• Python的input能干什么

    全部评论我要评论

    © 2021 Python学习网 苏ICP备2021003149号-1

  • 取消发布评论
  • 

    Python学习网