语法:

inp = input('STATEMENT')
    
Example:
1.  >>> name = input('What is your name?\n')     # \n ---> newline ---> It causes a line break
            >>> What is your name?
            Ram
            >>> print(name)
            Ram 
            
            # ---> comment in python
# Python 程序
# 展示了 input() 的使用

val = input("Enter your value: ")
print(val)

输出:

python接受命令行字符串_大数据

以字符串作为输入:

name = input('你叫什么名字?\n')	 # \n ---> newline ---> 导致换行
print(name)

输出:

你叫什么名字?
Ram
Ram

输入函数在 Python 中的工作原理:

  • 当 input() 函数执行时,程序流程将停止,直到用户给出输入。
  • 在输出屏幕上显示的要求用户输入输入值的文本或消息是可选的,即将在屏幕上打印的提示是可选的。
  • 无论您输入什么内容,输入函数都会将其转换为字符串。如果您输入一个整数值,input() 函数仍会将其转换为字符串。您需要在代码中使用 typecasting 将其显式转换为整数。

代码:

# 在 Python 中检查输入类型的程序

num = input ("Enter number :")
print(num)
name1 = input("Enter name : ")
print(name1)

# 输入值的打印类型
print ("type of number", type(num))
print ("type of name", type(name1))

输出:

python接受命令行字符串_大数据_02

raw_input(): 此函数适用于旧版本(如 Python 2.x)。此函数准确获取从键盘输入的内容,将其转换为字符串,然后将其返回给我们要存储它的变量。

例子:

# 显示使用 raw\_input() 的 Python 程序

g = raw\_input("输入你的名字 :")
print g