Python基礎02 基本資料型別

2021-10-07 02:12:49 字數 1109 閱讀 3240

```python

# 1、整型 int

age =

18print

(type

(age))#

# 2、浮點型 float

salary =

9.9#

print

(type

(salary)

)# 3、字串型別 str

# 定義:用引號('',"",''' ''',""" """")包含的一串字元

name =

'chenhongwei'

print

(type

(name))#

info =

"""撒地方非常大聲道

的觀點的側發光

"""print

(type

(info))#

print

(info)

# 4、列表 list :索引對應值,索引從0開始,0代表第乙個

# 定義:在內用逗號分隔多個任意型別的值,乙個值被稱之為元素

l =[10,

'ssdf',[

1,2]

,1.0

]print

(type

(l))

# print

(l)# [10, 'ssdf', [1, 2], 1.0]

print

(l[0])

# 10

print

(l[-1]

)# 1.0

# 5、字典型別 dict :key對應值,其中key通常為字串型別,所以key對值可以有描述性的功能

# 定義:在{}內用逗號分開多個key:value

d =print

(type

(d))

# print

(d['age'])

# 18

# 6、布林型別 bool

is_ok=

true

is_ok=

false

print

(type

(is_ok)

)#

Python基礎02 基本資料型別

簡單的資料型別以及賦值 python的變數不需要宣告,你可以直接輸入 a 10 那麼你的記憶體裡就有了乙個變數a,它的值是10,它的型別是integer 整數 在此之前你不需要做什麼特別的宣告,而資料型別是python自動決定的。print a print type a 那麼會有如下輸出 10 這裡...

Python基礎02 基本資料型別

簡單的資料型別以及賦值 python的變數不需要宣告,你可以直接輸入 a 10 那麼你的記憶體裡就有了乙個變數a,它的值是10,它的型別是integer 整數 在此之前你不需要做什麼特別的宣告,而資料型別是python自動決定的。print a print type a 那麼會有如下輸出 10 這裡...

Python基礎02 基本資料型別

python的變數定義不需要指定變數的型別,通過 運算子可以實現變數的賦值操作,的左邊表示變數名,的右邊表示變數的值。a 28 integer 整型 b 3.14 float 浮點型 c false boolean true false 布林型 d hello world str 字元型。pytho...