Python中常见的数据类型
2021/9/9 9:33:55
本文主要是介绍Python中常见的数据类型,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
''' 整型:int 浮点型:float 字符串:str 布尔:bool 字典:dict 集合:set 列表:list 元组:tuple ''' age = 10 print(type(age))#整形 price = 9.9 print(type(price))#浮点型 str1 = '20' print(type(str1)) str2 = 'hello' print(type(str2)) str3 = '19.9' print(type(str3))#字符串(只要有’‘或者“”都为字符串) f = False t = True print(type(f)) print(type(t))#布尔 tom = {'age':18,'call':123456789} print(type(tom))#字典 tom1 = {'age',18,'call',123456789} print(type(tom1))#集合 name = ['tony','tom','jack'] print(type(name))#列表 name1 = ('tony','tom','jack') print(type(name1))#元组
这篇关于Python中常见的数据类型的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-11-16`PyMuPDF4LLM`:提取PDF数据的神器
- 2024-11-16四种数据科学Web界面框架快速对比:Rio、Reflex、Streamlit和Plotly Dash
- 2024-11-14获取参数学习:Python编程入门教程
- 2024-11-14Python编程基础入门
- 2024-11-14Python编程入门指南
- 2024-11-13Python基础教程
- 2024-11-12Python编程基础指南
- 2024-11-12Python基础编程教程
- 2024-11-08Python编程基础与实践示例
- 2024-11-07Python编程基础指南