What is the python input statement?
The python input statement is "input()". The input() function can read a line of text from the standard input. The default standard input is the keyboard; that is, it reads the information entered by the user from the keyboard. input() can receive a Python expression as input and return the result of the operation.
The operating environment of this tutorial: Windows 10 system, Dell G3 computer, Python3.
The python input statement is "input()".
Read keyboard input
Python provides the input() built-in function to read a line of text from the standard input. The default standard input is the keyboard.
input can receive a Python expression as input and return the result of the operation.
The usage rules of input() are relatively simple, because Python does not need to be defined in advance when using variables, so when we need to enter information, we only need to give a variable name and enter it directly.
That is: Variable name=input('Guidance information')
Recommended learning: Python video tutorial
More below Let’s look at the input() function with a few examples.
a = input('输出php中文网的网址:') b = input('输入你的名字:') c = input('输入你的生日:') d = input('输入你最喜欢的城市名:') e = input('输入你最喜欢的数字:') print("php中文网的网址:",a) print('你的姓名:',b) print('你的生日:',c) print('你喜欢的城市和数字分别为:',d,e)
Output result:
输出php中文网的网址:www.php.cn 输入你的名字:轻烟 输入你的生日:2月29日 输入你最喜欢的城市名:苏州 输入你最喜欢的数字:8 php中文网的网址: www.php.cn 你的姓名: 轻烟 你的生日: 2月29日 你喜欢的城市和数字分别为: 苏州 8
It should be noted that if we simply use the input() function directly, the content we input will be saved in string format. The following writing method can directly specify the type of input content after input.
For example:
a = int(input('我最喜欢的数字:')) b = float(input('我认为适宜的温度:')) print(a,type(a))#先输出内容,然后type()函数看类型。 print(b,type(b))
The output result is:
我最喜欢的数字:6 我认为适宜的温度:25 6 <class 'int'> 25.0 <class 'float'>
You will encounter a very common problem in your future study, how to enter multiple inputs in one line in Python character.
Usually the built-in map() function in Python is used for input.
For example:
a,b,c = map(int,input().split()) #这种方式输入了3个int型的数字,split()代表以空格隔开。 print(a,b,c) index = list(map(int,input().split())) #这种方式可以输入任意个int型的数字,在这里采用列表来存储。 print(index)
Output:
2 6 8 2 6 8 1 2 3 4 5 6 7 8 9 [1, 2, 3, 4, 5, 6, 7, 8, 9]
For more programming-related knowledge, please visit: Programming Teaching! !
The above is the detailed content of What is the python input statement?. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics



PHP is suitable for web development and rapid prototyping, and Python is suitable for data science and machine learning. 1.PHP is used for dynamic web development, with simple syntax and suitable for rapid development. 2. Python has concise syntax, is suitable for multiple fields, and has a strong library ecosystem.

PHP is mainly procedural programming, but also supports object-oriented programming (OOP); Python supports a variety of paradigms, including OOP, functional and procedural programming. PHP is suitable for web development, and Python is suitable for a variety of applications such as data analysis and machine learning.

VS Code can run on Windows 8, but the experience may not be great. First make sure the system has been updated to the latest patch, then download the VS Code installation package that matches the system architecture and install it as prompted. After installation, be aware that some extensions may be incompatible with Windows 8 and need to look for alternative extensions or use newer Windows systems in a virtual machine. Install the necessary extensions to check whether they work properly. Although VS Code is feasible on Windows 8, it is recommended to upgrade to a newer Windows system for a better development experience and security.

VS Code extensions pose malicious risks, such as hiding malicious code, exploiting vulnerabilities, and masturbating as legitimate extensions. Methods to identify malicious extensions include: checking publishers, reading comments, checking code, and installing with caution. Security measures also include: security awareness, good habits, regular updates and antivirus software.

In VS Code, you can run the program in the terminal through the following steps: Prepare the code and open the integrated terminal to ensure that the code directory is consistent with the terminal working directory. Select the run command according to the programming language (such as Python's python your_file_name.py) to check whether it runs successfully and resolve errors. Use the debugger to improve debugging efficiency.

VS Code can be used to write Python and provides many features that make it an ideal tool for developing Python applications. It allows users to: install Python extensions to get functions such as code completion, syntax highlighting, and debugging. Use the debugger to track code step by step, find and fix errors. Integrate Git for version control. Use code formatting tools to maintain code consistency. Use the Linting tool to spot potential problems ahead of time.

VS Code is available on Mac. It has powerful extensions, Git integration, terminal and debugger, and also offers a wealth of setup options. However, for particularly large projects or highly professional development, VS Code may have performance or functional limitations.

The key to running Jupyter Notebook in VS Code is to ensure that the Python environment is properly configured, understand that the code execution order is consistent with the cell order, and be aware of large files or external libraries that may affect performance. The code completion and debugging functions provided by VS Code can greatly improve coding efficiency and reduce errors.
