如果`input()`没有赋给变量,那么stdin在哪里

时间:2018-04-05 09:08:56

标签: python

在shell脚本中,
如果在read命令后没有列出变量,则 默认变量:REPLY将被分配所有输入

    $ read
    test
    $ echo $REPLY
    test

然而,在python中

    In [1]: input(": ")
    : test
    Out[1]: 'test'
    In [2]: #it's gone

我在哪里可以找到'测试'?

0 个答案:

没有答案