4.用户输入与输出

本文介绍了Python中读取用户输入的方法,包括Python3的input()函数和Python2的raw_input()与input()函数的区别。内容涵盖不同方式的格式化输出,如默认输出、字符串拼接、%操作符和format()方法。还讨论了处理不同数据类型输出时可能遇到的问题,如类型不一致的错误及修正方法。最后,给出了两个练习,涉及模拟用户登录和猜年龄游戏,强调了getpass库在隐藏密码输入中的应用。
摘要由CSDN通过智能技术生成

4.1 读取键盘输入:

name = input("what's u name:")
print("hello",name)

# 输出:
what's u name:carey
hello carey

4.2 Python3 与Python2中用户输入

Python3 中用户输入

  • input( )的输入都是字符串类型
  • 如果想将input( )里的内容,当作一个表达式去运行,使用eval( )
  • eval() 函数用来执行一个字符串表达式,并返回表达式的值。
>>> name = input("u name: ")
u name: carey

# 表达式
>>> eval(input("a + b = "))
a + b = 1 + 2
3

Python2 中用户输入

  • raw_input( ):以字符串类型输入;
  • input( ):根据输入内容判断数据类型(字符串输入需要加 " str " ),或当作一个表达式去运行;
>>> name = input("u name: ")
u name: carey
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "<string>", line 1, in <module>
NameError: name 'carey' is not defined
>>>
>>> name = input("u name: ")
u name: "carey"
>>> print(name)
carey
>>>
>>> age = int(input("age:"))
age:18
>>> print(type(age), type(str(age)))
(<type 'int'>, <type 'str'>)

# 表达式
>>> result = input("1 + 2 = ")
1 + 2 = 1 + 2
>>> print "result"
result
>>> print result
3
>>>
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值