美文网首页
Python-用户输入

Python-用户输入

作者: 图南99 | 来源:发表于2021-05-11 16:56 被阅读0次

    程序最终都是和用户交互的,因为有些时候我们需要从用户哪里获取一下信息,才能给出回应,这里就需要使用函数input()
    函数input的工作原理:) 让程序暂停运行,等待用户输入一些文本。获取用户输入后,Python将其存储在一个变量中,方便使用。

    message = input("Tell me something, and I will repeat it back to you: ")
    print(message)
    

    inpt()函数是将用户输入解读为字符串,但是实际还有有数值,这时需要使用函数int()获取用户输入的

    number= input("how many people with you?")
    number=int(number)
    if number>=8:
      print("no table")
    else:
      print("please come in")
    

    相关文章

      网友评论

          本文标题:Python-用户输入

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