美文网首页
input()输入函数介绍

input()输入函数介绍

作者: 可可里西 | 来源:发表于2021-11-29 13:16 被阅读0次

    在编程语言中有输出就有输入,下面我们就来看看input()输入函数,还是老规矩先看看输入函数的构造。

    def input(*args, **kwargs): # real signature unknown
    
        """
    
        Read a string from standard input.  The trailing newline is stripped.
    
        The prompt string, if given, is printed to standard output without a
    
        trailing newline before reading input.
    
        If the user hits EOF (*nix: Ctrl-D, Windows: Ctrl-Z+Return), raise EOFError.
    
        On *nix systems, readline is used if available.
    
        """
    
        pass
    

    从构造函数我们可以看到input传入的参数是*arg, **kwargs,这两个参数表示可以在函数内传入任何形式的变量或其他数据类型。

    下面我们就来演示一下:

    c = 'python自学网'
    
    aa = input(c)print(aa)
    

    返回结果:

    1.png

    先打印的是python自学网,然后继续输入dd之后按回车键,又输出dd,是因为aa这个变量被重新赋值为dd。

    下面在看一个案例:

    bb = input('请输入你的年龄:')
    
    print(bb)
    

    返回结果:

    2.png

    输入后回车的结果:

    3.png

    相关文章

      网友评论

          本文标题:input()输入函数介绍

          本文链接:https://www.haomeiwen.com/subject/dhflxrtx.html