>  기사  >  백엔드 개발  >  Python 유형 변환 방법 요약

Python 유형 변환 방법 요약

爱喝马黛茶的安东尼
爱喝马黛茶的安东尼원래의
2019-06-15 16:46:537929검색

Python에서 변환을 입력하는 방법?

관련 권장 사항: "python video"

Python 유형 변환 방법 요약

int

은 int 유형으로의 변환을 지원하며, float, str, 바이트 , 다른 유형은 지원되지 않습니다.

float -> int

소수점과 다음 값을 제거하고 정수 부분만 남깁니다.

int(-12.94)     # -12

str -> int

문자열에 숫자(0~9)와 기호(+/-) 이외의 문자가 있으면 오류가 보고됩니다.

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

bytes -> int

바이트 단위로 숫자(0~9)와 기호(+/-) 이외의 문자가 있으면 오류가 발생합니다.

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

float

은 float 유형으로의 변환을 지원하며 int, str, bytes만 지원하며 다른 유형은 지원되지 않습니다.

int -> float

int를 float로 변환하면 소수점 한 자리가 자동으로 추가됩니다.

float(-1209)     # -1209.0

str -> float

문자열에 양수 및 음수 기호(+/-), 숫자(0-9), 소수점(.) 이외의 문자가 포함되어 있으면 변환이 지원되지 않습니다.

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

bytes -> float

바이트에 부호(+/-), 숫자(0-9), 소수점(.) 이외의 문자가 포함된 경우 변환이 지원되지 않습니다.

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

complex

int, float, str 복합 유형으로의 변환만 지원합니다.

int -> complex

int 복소수 변환 시 허수부가 자동으로 추가되어 0j로 표현됩니다.

complex(12)         # (12+0j)

float -> complex

float 복소수 변환 시 허수부가 자동으로 추가되어 0j로 표현됩니다.

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

str -> complex

str complex를 변환할 때 int 또는 float로 변환할 수 있으면 변환한 후 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을 변환합니다. str은 먼저 값을 표준 복합 표현식으로 변환한 다음 문자열로 변환합니다. str

bytes와 str 간의 변환은 특별합니다. Python 3.x에서는 문자열과 바이트가 더 이상 혼동되지 않지만 완전히 다른 데이터 유형입니다.

실행 가능한 표현식 문자열로 변환:

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

str() 함수는 인코딩 매개변수를 지정하거나 bytes.decode() 메서드를 사용하여 실제 데이터를 변환합니다:

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

list ->

会先将值格式化为标准的 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)    # <class &#39;int&#39;>,转换内置类
str(hex)    # <built-in function hex>,转换内置函数

 转换类实例:

class Hello:
    pass
obj = Hello()
print(str(obj))
# <__main__.Hello object at 0x1071c6630>

转换函数:

def hello():
    pass
print(str(hello))
# <function hello at 0x104d5a048>

bytes

仅支持 str 转换为 bytes 类型。

&#39;中国&#39;.encode()                   
# b&#39;\xe4\xb8\xad\xe5\x9b\xbd&#39;bytes(&#39;中国&#39;, encoding=&#39;utf-8&#39;)   
# b&#39;\xe4\xb8\xad\xe5\x9b\xbd&#39;

list

支持转换为 list 的类型,只能是序列,比如:str、tuple、dict、set等。

str -> list

list(&#39;123abc&#39;)      
# [&#39;1&#39;, &#39;2&#39;, &#39;3&#39;, &#39;a&#39;, &#39;b&#39;, &#39;c&#39;]

bytes -> list

bytes 转换列表,会取每个字节的 ASCII 十进制值并组合成列表

list(b&#39;hello&#39;)      
# [104, 101, 108, 108, 111]

tuple -> list

tuple 转换为 list 比较简单。

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

dict -> list

字典转换列表,会取键名作为列表的值。

list({&#39;name&#39;: &#39;hello&#39;, &#39;age&#39;: 18})  
# [&#39;name&#39;, &#39;age&#39;]

set -> list

集合转换列表,会先去重为标准的集合数值,然后再转换。

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

tuple

与列表一样,支持转换为 tuple 的类型,只能是序列。

str -> tuple

tuple(&#39;中国人&#39;)    
# (&#39;中&#39;, &#39;国&#39;, &#39;人&#39;)

bytes -> tuple

bytes 转换元组,会取每个字节的 ASCII 十进制值并组合成列表。

tuple(b&#39;hello&#39;)     
# (104, 101, 108, 108, 111)

list -> tuple

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

dict -> tuple

tuple({&#39;name&#39;: &#39;hello&#39;, &#39;age&#39;: 18})     
# (&#39;name&#39;, &#39;age&#39;)

set -> tuple

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

dict

str -> dict

使用 json 模块

使用 json 模块转换 JSON 字符串为字典时,需要求完全符合 JSON 规范,尤其注意键和值只能由单引号包裹,否则会报错。

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

使用 eval 函数

因为 eval 函数能执行任何符合语法的表达式字符串,所以存在严重的安全问题,不建议。

user_info = "{&#39;name&#39;: &#39;john&#39;, &#39;gender&#39;: &#39;male&#39;, &#39;age&#39;: 28}"
print(eval(user_info))
# {&#39;name&#39;: &#39;john&#39;, &#39;gender&#39;: &#39;male&#39;, &#39;age&#39;: 28}

使用 ast.literal_eval 方法

使用 ast.literal_eval 进行转换既不存在使用 json 进行转换的问题,也不存在使用 eval 进行转换的 安全性问题,因此推荐使用 ast.literal_eval。

import ast
user_info = "{&#39;name&#39;: &#39;john&#39;, &#39;gender&#39;: &#39;male&#39;, &#39;age&#39;: 28}"
user_dict = ast.literal_eval(user_info)
print(user_dict)
# {&#39;name&#39;: &#39;john&#39;, &#39;gender&#39;: &#39;male&#39;, &#39;age&#39;: 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 = {&#39;a&#39;, &#39;b&#39;, &#39;c&#39;}
print(dict(zip(set1, set2)))
# {1: &#39;c&#39;, 2: &#39;a&#39;, 3: &#39;b&#39;}

set

str -> set

先将字符切割成元组,然后再去重转换为集合。

print(set(&#39;hello&#39;))     # {&#39;l&#39;, &#39;o&#39;, &#39;e&#39;, &#39;h&#39;}

bytes -> set

会取每个字节的 ASCII 十进制值并组合成元组,再去重。   

set(b&#39;hello&#39;)           # {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({&#39;name&#39;: &#39;hello&#39;, &#39;age&#39;: 18})
# {&#39;age&#39;, &#39;name&#39;}

    

위 내용은 Python 유형 변환 방법 요약의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.