1234567891011121314
# 除求整数print(2//2)# 除小数print(2/2)# python 表示二进制 在数字后面加 0b# 0b10 表示二进制的10print(0b10)# python 表示八进制 在数字后面加 0o# 0o10 表示八进制的10print(0o10)# python 表示十六进制 在数字后面加 0x# 0x10 表示十六进制的10print(0x10)print(0x1F)
Jmeow
Developer
Moon, Solar System
文章
46
分类
10
标签
16
Update your browser to view this website correctly. Update my browser now
×