Python 用户输入
用户输入
Python 允许用户输入。
这意味着我们能够向用户请求输入。
Python 3.6 和 Python 2.7 的方法略有不同。
Python 3.6 使用 input()
方法。
Python 2.7 使用 raw_input()
方法。
以下示例请求用户名,当您输入用户名后,它会显示在屏幕上。
当执行到 input()
函数时,Python 会停止执行,直到用户输入内容后才会继续。
Python 允许用户输入。
这意味着我们能够向用户请求输入。
Python 3.6 和 Python 2.7 的方法略有不同。
Python 3.6 使用 input()
方法。
Python 2.7 使用 raw_input()
方法。
以下示例请求用户名,当您输入用户名后,它会显示在屏幕上。
当执行到 input()
函数时,Python 会停止执行,直到用户输入内容后才会继续。
If you want to use W3Schools services as an educational institution, team or enterprise, send us an e-mail:
[email protected]
If you want to report an error, or if you want to make a suggestion, send us an e-mail:
[email protected]