歡迎光臨
每天分享高質量文章

史上最全的 Python 3 型別轉換指南

來源:格物

連結:https://shockerli.net/post/python3-data-type-convert/

 

int

支援轉換為 int 型別的,僅有 floatstrbytes,其他型別均不支援。

float -> int

會去掉小數點及後面的數值,僅保留整數部分。

int(-12.94)     # -12

str -> int

如果字串中有數字(0-9)和正負號(+/-)以外的字元,就會報錯。

int('1209')     # 1209
int('-12')      # -12
int('+1008')    # 1008

bytes -> int

如果 bytes 中有數字(0-9)和正負號(+/-)以外的字元,就會報錯。

int(b'1209')     # 1209
int(b'-12')      # -12
int(b'+1008')    # 1008

float

支援轉換為 float 型別的,僅有 intstrbytes,其他型別均不支援。

int -> float

int 轉換為 float 時,會自動給新增一位小數。

float(-1209)     # -1209.0

str -> float

如果字串含有正負號(+/-)、數字(0-9)和小數點(.)以外的字元,則不支援轉換。

float('-1209')          # -1209.0
float('-0120.29023')    # -120.29023

bytes -> float

如果 bytes 中含有正負號(+/-)、數字(0-9)和小數點(.)以外的字元,則不支援轉換。

float(b'-1209')         # -1209.0
float(b'-0120.29023')   # -120.29023

complex

僅支援 intfloatstr 轉換成 complex 型別。

int -> complex

int 轉換 complex 時,會自動新增虛數部分並以0j表示。

complex(12)         # (12+0j)

 

float -> complex

float 轉換 complex 時,會自動新增虛數部分並以0j表示。

complex(-12.09)     # (-12.09+0j)

str -> complex

str 轉換 complex 時,如果能轉換成 int 或 float,則會轉換後再轉為 complex。如果字串完全符合 complex 運算式規則,也可以轉換為 complex 型別值。

complex('-12.09')       # (-12.09+0j)
complex('-12.0')        # (-12+0j),去除了小數部分
complex('-12')          # (-12+0j)
complex('-12+9j')       # (-12+9j)
complex('(-12+9j)')     # (-12+9j)
complex('-12.0-2.0j')   # (-12-2j),去除了小數部分
complex('-12.0-2.09j')  # (-12-2.09j)
complex(b'12')          # 報錯,不支援 bytes 轉換為 complex
complex('12 + 9j')      # 報錯,加號兩側不可有空格

str

str() 函式可以將任意物件轉換為字串。

int -> str

int 轉換 str 會直接完全轉換。

str(12) # 12

float -> str

float 轉換 str 會去除末位為 0 的小數部分。

str(-12.90)     # -12.9

complex -> str

complex 轉換 str,會先將值轉化為標準的 complex 運算式,然後再轉換為字串。

str(complex(12 + 9j))   # (12+9j)
str(complex(12, 9))     # (12+9j)

bytes -> str

bytes 和 str 的轉換比較特殊點,在 Python 3.x 中,字串和位元組不再混淆,而是完全不同的資料型別。

轉換為可執行的運算式字串:

str(b'hello world')        # b'hello world'

str() 函式指定 encoding 引數,或者使用 bytes.decode() 方法,可以作實際資料的轉換:

b'hello world'.decode()                             # hello world
str(b'hello world', encoding='utf-8')               # hello world
str(b'中国', encoding='utf-8')  # 中國

list -> str

會先將值格式化為標準的 list 運算式,然後再轉換為字串。

str([])                      # []
str([1, 2, 3])              # [1, 2, 3]
''.join(['a', 'b', 'c'])    # abc

tuple -> str

會先將值格式化為標準的 tuple 運算式,然後再轉換為字串。

str(())                     # ()
str((1, 2, 3))              # (1, 2, 3)
''.join(('a', 'b', 'c'))    # abc

dict -> str

會先將值格式化為標準的 dict 運算式,然後再轉換為字串。

str({'name': 'hello', 'age': 18})       # {'name': 'hello', 'age': 18}
str({})                                 # {}
''.join({'name': 'hello', 'age': 18})   # nameage

set -> str

會先將值格式化為標準的 set 運算式,然後再轉換為字串。

str(set({}))                # set()
str({1, 2, 3})              # {1, 2, 3}
''.join({'a', 'b', 'c'})    # abc

其他型別

轉換內建物件:

str(int)                # ,轉換內建類
str(hex)                # ,轉換內建函式

轉換類實體:

class Hello:
    pass
obj = Hello()
print(str(obj))
# <__main__.hello object="" at=""/>

轉換函式:

def hello():
    pass
print(str(hello))
# 

bytes

僅支援 str 轉換為 bytes 型別。

'中國'.encode()                   # b'中国'
bytes('中國', encoding='utf-8')   # b'中国'

list

支援轉換為 list 的型別,只能是序列,比如:str、tuple、dict、set等。

str -> list

list('123abc')      # ['1', '2', '3', 'a', 'b', 'c']

bytes -> list

bytes 轉換串列,會取每個位元組的 ASCII 十進位制值並組合成串列

list(b'hello')      # [104, 101, 108, 108, 111]

tuple -> list

tuple 轉換為 list 比較簡單。

list((1, 2, 3))     # [1, 2, 3]

dict -> list

字典轉換串列,會取鍵名作為串列的值。

list({'name': 'hello', 'age': 18})  # ['name', 'age']

set -> list

集合轉換串列,會先去重為標準的集合數值,然後再轉換。

list({1, 2, 3, 3, 2, 1})    # [1, 2, 3]

tuple

與串列一樣,支援轉換為 tuple 的型別,只能是序列。

str -> tuple

tuple('中國人')    # ('中', '國', '人')

bytes -> tuple

bytes 轉換元組,會取每個位元組的 ASCII 十進位制值並組合成串列。

tuple(b'hello')     # (104, 101, 108, 108, 111)

list -> tuple

tuple([1, 2, 3])    # (1, 2, 3)

dict -> tuple

tuple({'name': 'hello', 'age': 18})     # ('name', 'age')

set -> tuple

tuple({1, 2, 3, 3, 2, 1})       # (1, 2, 3)

 

dict

str -> dict

  • 使用 json 模組

    使用 json 模組轉換 JSON 字串為字典時,需要求完全符合 JSON 規範,尤其註意鍵和值只能由單引號包裹,否則會報錯。

import json
user_info = '{"name": "john", "gender": "male", "age": 28}'
print(json.loads(user_info))
# {'name': 'john', 'gender': 'male', 'age': 28}

 

  • 使用 eval 函式

    因為 eval 函式能執行任何符合語法的運算式字串,所以存在嚴重的安全問題,不建議。

user_info = "{'name': 'john', 'gender': 'male', 'age': 28}"
print(eval(user_info))

# {'name': 'john', 'gender': 'male', 'age': 28}

 

  • 使用 ast.literal_eval 方法

    使用 ast.literal_eval 進行轉換既不存在使用 json 進行轉換的問題,也不存在使用 eval 進行轉換的 安全性問題,因此推薦使用 ast.literal_eval。

import ast

user_info = "{'name': 'john', 'gender': 'male', 'age': 28}"
user_dict = ast.literal_eval(user_info)
print(user_dict)

# {'name': 'john', 'gender': 'male', 'age': 28}

 

list -> dict

透過 zip 將 2 個串列對映為字典:

list1 = [1, 2, 3, 4]
list2 = [1, 2, 3]
print(dict(zip(list1, list2)))
# {1: 1, 2: 2, 3: 3}

將巢狀的串列轉換為字典:

li = [
    [1, 111],
    [2, 222],
    [3, 333],
]
print(dict(li))
# {1: 111, 2: 222, 3: 333}

 

tuple -> dict

透過 zip 將 2 個元組對映為字典:

tp1 = (1, 2, 3)
tp2 = (1, 2, 3, 4)
print(dict(zip(tp1, tp2)))
# {1: 1, 2: 2, 3: 3}

將巢狀的元組轉換為字典:

tp = (
    (1, 111),
    (2, 222),
    (3, 333),
)
print(dict(tp))
# {1: 111, 2: 222, 3: 333}

 

set -> dict

透過 zip 將 2 個集合對映為字典:

set1 = {1, 2, 3}
set2 = {'a', 'b', 'c'}
print(dict(zip(set1, set2)))
# {1: 'c', 2: 'a', 3: 'b'}

set

str -> set

先將字元切割成元組,然後再去重轉換為集合。

print(set('hello'))     # {'l', 'o', 'e', 'h'}

bytes -> set

會取每個位元組的 ASCII 十進位制值並組合成元組,再去重。

set(b'hello')           # {104, 108, 101, 111}

list -> set

先對串列去重,再轉換。

set([1, 2, 3, 2, 1])    # {1, 2, 3}

tuple -> set

先對串列去重,再轉換。

set((1, 2, 3, 2, 1))    # {1, 2, 3}

dict -> set

會取字典的鍵名組合成集合。

set({'name': 'hello', 'age': 18})
# {'age', 'name'}

參考資料

  • Python 如何將字串轉為字典

 


●編號469,輸入編號直達本文

●輸入m獲取到文章目錄

推薦↓↓↓

 

演演算法與資料結構

更多推薦18個技術類公眾微信

涵蓋:程式人生、演演算法與資料結構、駭客技術與網路安全、大資料技術、前端開發、Java、Python、Web開發、安卓開發、iOS開發、C/C++、.NET、Linux、資料庫、運維等。

    贊(0)

    分享創造快樂