1 Star 0 Fork 0

sengluty/learn

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
数值类型及转换测试.py 441 Bytes
一键复制 编辑 原始数据 按行查看 历史
sengluty 提交于 2021-04-07 10:36 . change
a,b,c,d=20,3.5,False,5+6j
print(type(a),type(b),type(c),type(d))#查看类型
e=20170000000201700002017
f=e+5
print(e)
print(f)
g=2.17e+18#科学计数法表示float型
h=g-3
print(g)
print(h)
print(bin(26),oct(26),hex(26))#bin二进制,oct十进制,hex十六进制
print(oct(0x26),int(0x26),bin(0x26))
print(int(35.8),float(23))
print(isinstance(24,float))#查看数据是否为给定类型
print(complex(5))#复数
print(complex(3,4))
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/sengluty/learn.git
git@gitee.com:sengluty/learn.git
sengluty
learn
learn
master

搜索帮助