Python 之 input 与 raw_input 的区别

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python 之 input 与 raw_input 的区别相关的知识,希望对你有一定的参考价值。

 input 接受合法的Python 表达式

     raw_input 将所有的输入作为原始数据,将其放入字符串中

     >>> name =  input("what‘s your name ?")

                    what‘s your name ?  Yellow
                    Traceback (most recent call last):
                    File "<pyshell#10>", line 1, in <module>
                    name = input("What‘s is your name ?")
                    File "<string>", line 1, in <module>
                    NameError: name ‘yellow‘ is not defined

    >>> Yellow = "yellow"
    >>> name =  input("what‘s your name ?")

                    what‘s your name ?  Yellow

    >>> print "Hello, " + name
                    Hello, yellow

>>> input(‘Enter a number ‘)
                Enter a number 3
                3

             第一次输入“Yellow”时,作为表达式,但是没有定义,故报错,如果输入为正确表达式,则需要加单引号或双引号,作为字符串表达式输入。
             第二次定义了Yellow为表达式,并进行了赋值操作,所以再次输入,为合法的表达式,故没有报错。
             第三次输入数字3,作为数字,即合法的表达式,故没有报错。

             raw_input() 函数将所有输入原始数据,并放入字符串中,故不会报错。

             >>> name = raw_input("What‘s is your name ?")
                            What‘s is your name ?Yellow
            >>> print "Hello, " + name
                            Hello, Yellow

以上是关于Python 之 input 与 raw_input 的区别的主要内容,如果未能解决你的问题,请参考以下文章

Python 之 input 与 raw_input 的区别

Python 内置函数 2018-08-02

python语法入门之与用户交互,常用运算符

3 python之基础概要

Python基础之最大公约数与最小公倍数

Py与Py3的区别之输入input()函数