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中常见的数据类型的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程