欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

Python3中input的用法

程序员文章站 2022-06-30 18:31:00
input()是一种获取用户输入的方法,从标准输入中读入一个字符串,并自动忽略换行符\n。 换行符\n >>> print('a\nb')ab ......

input()是一种获取用户输入的方法,从标准输入中读入一个字符串,并自动忽略换行符\n。

换行符\n

>>> print('a\nb')
a
b

>>> user_money = input("please input your money:")
please input your money:1 # 1 是我自己输入的
>>> print(user_money)
1