1. 程式人生 > >python3數據類型

python3數據類型

false 字符 code 內置 函數 pre dict this test

一、python可以自定義數據類型,默認的數據類型有:

1、int 整數

2、float 浮點數

3、complex 復數

4、bool 布爾值

5、str 字符串

6、list 列表

7、tuple 元組

8、set 集合

9、dict 字典

# type:內置函數,可以查看變量的數據類型
# int 整數
var = 1
print(var, type(var))

# float 浮點數
var = 1.0
print
(var, type(var)) # complex 復數 var = 1 + 1j print(var, type(var)) # bool 布爾值 只有兩個值,True 和 False var = True print(var, type(var)) # str 字符串 無論包含幾個字符都是字符串 var = "this is a test1" print(var, type(var)) # list 列表 var = [1, 2, 3] print(var, type(var)) # tuple 元組 var = (1, 2 ,3) print(var, type(var))
# set 集合 var = {1, 2, 3} print(var, type(var)) # dict 字典 var = {"a": 1, "b": 2, "c": 3} print(var, type(var))

python3數據類型