练习题00 - Python2和Python3的区别
Posted 轻描丨淡写
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了练习题00 - Python2和Python3的区别相关的知识,希望对你有一定的参考价值。
一:输入的区别
1.在Python3中input功能会等待用户的输入,用户输入任何内容,都存成字符串类型,然后赋值给等号左边的变量名
username = input(‘请输入用户名:‘)
print(type(username))
# 输入:darker
# 输出:<class ‘str‘>
# 输入:123
# 输出:<class ‘str‘>
# 输入:[1,2,3]
# 输出:<class ‘str‘>
# 输入:(1,2,3)
# 输出:<class ‘str‘>
# 输入:{‘name‘:‘xxq‘, ‘age‘:18}
# 输出:<class ‘str‘>
2.在python2中还存在一个input功能,需要用户输入一个明确的数据类型,输入什么类型就存成什么类型
inp_data = input(‘请输入内容:‘)
print(type(inp_data))
# 输入:darker
# 输出:<class ‘str‘>
# 输入:123
# 输出:<class ‘int‘>
# 输入:[1,2,3]
# 输出:<class ‘list‘>
# 输入:(1,2,3)
# 输出:<class ‘tuple‘>
# 输入:{‘name‘:‘xxq‘, ‘age‘:18}
# 输出:<class ‘dict‘>
3.在python2中存在一个raw_input功能与python3中的input功能一模一样
Python2下:
username = raw_input(‘请输入用户名:‘)
Python3下:
username = input(‘请输入用户名:‘)
以上是关于练习题00 - Python2和Python3的区别的主要内容,如果未能解决你的问题,请参考以下文章