当前位置:
首页 > Python基础教程 >
-
一起来学习一下python的数据类型
这篇文章主要为大家详细介绍了python的数据类型,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下希望能够给你带来帮助
内置数据类型
文本类型:str
数值类型: int,float,complex
序列类型:list,tuple,range
映射类型: dict
集合类型: set,frozenset
布尔类型: boolean
二进制类型: bytes,bytearray,mempryview
获取数据类型【type()】
使用type来进行获取函数类型
x = 12
print('>>使用type来进行获取函数类型')
print(type(x))
str: 转换为str(字符串)类型
x = 12
x_1 = str(12)
print('>>str:转换为str(字符串)类型')
print(x_1)
print(type(x_1))
int: 转换为int类型
y = 12.25
y_1 = int(y)
print('>> int: 转换为int类型')
print(y_1)
print(type(y_1))
float: 转换为float类型
z = '12.25'
z_1 = float(z)
print('>> float: 转换为float类型')
print(z_1)
print(type(z_1))
complex:转换为complex(复数)类型
a = 1j
a_1 = complex(a)
print('>> complex:转换为complex(复数)类型')
print(a_1)
print(type(a_1))
list: 转换为list(列表)类型
b = (1,2,3,4)
b_1 = list(b)
print('>> list: 转换为list(列表)类型')
print(b_1)
print(type(b_1))
tuple:转换为tuple(元组)类型
c = [1,2,3,3]
c_1 = tuple(c)
print('>> tuple:转换为tuple(元组)类型')
print(c_1)
print(type(c_1))
range: 转换为range类型
d = 6
d_1 = range(d)
print('>> range: 转换为range类型')
print(d_1)
print(type(d_1))
dict: 转换为dict(字典)类型
print('>> dict 转换为dict(字典)类型')
e_1 = dict(a=2,b=4)
print(e_1)
print(type(e_1))
e_2 = dict([(x,1),(y,2)])
print(e_2)
print(type(e_2))
set:转换为set(集合)类型
f = (1,2,3,3)
f_1 = set(f)
print('>> set:转换为set(集合)类型 ')
print(f_1)
print(type(f_1))
bool: 转换为bool(布尔)类型
g_1 = bool(x>y)
print('>> bool: 转换为bool(布尔)类型')
print(g_1)
print(type(g_1))
g_1 = bool(x>y)
print('>> bool: 转换为bool(布尔)类型')
print(g_1)
print(type(g_1))
总结
本篇文章就到这里了,希望能够给你带来帮助,也希望您能够多多关注的更多内容!
原文链接:https://blog.csdn.net/weixin_38931408/article/details/122689491
栏目列表
最新更新
求1000阶乘的结果末尾有多少个0
详解MyBatis延迟加载是如何实现的
IDEA 控制台中文乱码4种解决方案
SpringBoot中版本兼容性处理的实现示例
Spring的IOC解决程序耦合的实现
详解Spring多数据源如何切换
Java报错:UnsupportedOperationException in Col
使用Spring Batch实现批处理任务的详细教程
java中怎么将多个音频文件拼接合成一个
SpringBoot整合ES多个精确值查询 terms功能实
SQL Server 中的数据类型隐式转换问题
SQL Server中T-SQL 数据类型转换详解
sqlserver 数据类型转换小实验
SQL Server数据类型转换方法
SQL Server 2017无法连接到服务器的问题解决
SQLServer地址搜索性能优化
Sql Server查询性能优化之不可小觑的书签查
SQL Server数据库的高性能优化经验总结
SQL SERVER性能优化综述(很好的总结,不要错
开启SQLSERVER数据库缓存依赖优化网站性能
uniapp/H5 获取手机桌面壁纸 (静态壁纸)
[前端] DNS解析与优化
为什么在js中需要添加addEventListener()?
JS模块化系统
js通过Object.defineProperty() 定义和控制对象
这是目前我见过最好的跨域解决方案!
减少回流与重绘
减少回流与重绘
如何使用KrpanoToolJS在浏览器切图
performance.now() 与 Date.now() 对比