1. 程式人生 > 其它 >4、Python相關-Python資料型別

4、Python相關-Python資料型別

文章目錄

前言

一、Python3 中六個標準的資料型別

二、常見的資料型別:整數、浮點數、字串、列表、元組、字典

總結


前言

在學習一門程式語言時,首要的就是學習它的資料型別,Python也不例外,下面讓我們一起來看下Python資料型別需要掌握的知識點吧!


一、Python3 中六個標準的資料型別

1、Number(數字):int、float、complex(複數)

2、String(字串)

3、List(列表)

4、Tuple(元組)

5、Set(集合)

6、Dictionary(字典)

特別注意:

不可變資料(3 個):Number(數字)、String(字串)、Tuple(元組);

可變資料(3 個):List(列表)、Dictionary(字典)、Set(集合)。

說明:

不可變資料型別更改後地址發生改變,可變資料型別更改地址不發生改變。

二、常見的資料型別:整數、浮點數、字串、列表、元組、字典

1.程式碼

# 1.定義一個整數(int)型別
a = 12
print(type(a))   #列印變數a的資料型別
print(a)         #列印變數a的值
​
# 2.定義一個浮點型(float)
b = 12.0
print(type(b))
print(b)
​
# 3.定義一個字串(string)
c = "hello"
print(type(c))
print(c)
​
# 4.定義一個列表(list)
d = [1, 3, 5, "a", "b", "hello"]
print(type(d))
print(d)
​
# 5.定義一個元組(tuple)
e = (1, 3, 5, "a")
print(type(e))
print(e)
​
# 6.定義一個字典(dict)
f = {"username": "lcy", "psw": "123"}
print(type(f))
print(f)

2.輸出

<class 'int'>
12
​
<class 'float'>
12.0
​
<class 'str'>
hello
​
<class 'list'>
[1, 3, 5, 'a', 'b', 'hello']
​
<class 'tuple'>
(1, 3, 5, 'a')
​
<class 'dict'>
{'username': 'lcy', 'psw': '123'}

說明:

python定義一個數據型別只需用等號賦值即可,python會自動幫我們定義相應的資料型別。這一點可以看出,它沒有java等語言繁瑣的型別定義,語法簡單,極易上手!


總結


以上就是今天要講的內容,本文僅僅簡單介紹了python資料型別的使用。

關注公眾號“軟體測試技術聯盟”,傳送“測試資料”,免費獲取全棧軟體測試視訊資料!!!