Python3中input的用法
Posted 无证骑士
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python3中input的用法相关的知识,希望对你有一定的参考价值。
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
以上是关于Python3中input的用法的主要内容,如果未能解决你的问题,请参考以下文章