Home >Backend Development >Python Tutorial >What is the function of input in python

What is the function of input in python

尚
Original
2019-07-06 14:22:5112619browse

What is the function of input in python

The input() function in Python3.x accepts a standard input data and returns it as string type.

Input() in Python2.x is equivalent to eval(raw_input(prompt)), which is used to obtain console input.

raw_input() treats all input as strings and returns the string type. And input() has its own characteristics when dealing with pure numeric input. It returns the type of the entered number (int, float).

Note: Both input() and raw_input() functions can receive strings, but raw_input() directly reads the input from the console (it can receive any type of input). As for input(), it hopes to be able to read a legal python expression, that is, you must use quotes to enclose it when you enter a string, otherwise it will raise a SyntaxError.

Unless there is a special need for input(), we generally recommend using raw_input() to interact with users.

Note: input() in python3 receives the str type by default.

Function syntax

input([prompt])

Python2.x: input() requires input of python expression

>>>a = input("input:")
input:123                  # 输入整数
>>> type(a)
<type &#39;int&#39;>               # 整型
>>> a = input("input:")  
input:"runoob"           # 正确,字符串表达式
>>> type(a)
<type &#39;str&#39;>             # 字符串
>>> a = input("input:")
input:runoob               # 报错,不是表达式
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "<string>", line 1, in <module>
NameError: name &#39;runoob&#39; is not defined
<type &#39;str&#39;>

Python3. x

>>>a = input("input:")
input:123                  # 输入整数
>>> type(a)
<class &#39;str&#39;>              # 字符串
>>> a = input("input:")  
input:runoob              # 正确,字符串表达式
>>> type(a)
<class &#39;str&#39;>             # 字符串

For more Python-related technical articles, please visit the Python Tutorial column to learn!

The above is the detailed content of What is the function of input in python. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn