立即学习:https://edu.youkuaiyun.com/course/play/26676/338772?utm_source=blogtoedu
a, b = b, a
type(2)
浮点数、定点数
int()
id(3) 返回对象3在内存中的地址
divmod(5, 2)
5 // 2 得到商2
官方文档,如何查看built-in functions?
help()
help(id)
help(type)
0.1 + 0.2
round(0.1 + 0.2, 2)
round(1.2345, 3)