python的数据类型转换

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python的数据类型转换相关的知识,希望对你有一定的参考价值。

 

一、

强制类型转换:

在满足特定条件下时一般可以使用工厂函数

list()

str()

tuple()

......

等把数据类型转换为你要的类型

 

1、数字强制转换为字符串:

number --> str:

str(number)

 

二、

python3中bytes 和 str的转换:

Bytes --> str:

e1: str(Byte,encoding="utf8")

e2: bytes.decode(b)

 

str --> Bytes:

e1: bytes(str,encoding="utf8")

e2: str.encode(bytes)   

 

 

三、

utf-8和unicode的转换:(str-->bytes)

utf-8 解码为 unicode:

utf-8  --------decode(‘utf-8‘)------>   unicode

unicode 编码为 utf-8:

utf-8 <--------encode(‘utf-8‘)----- utf-8

 

 

 





以上是关于python的数据类型转换的主要内容,如果未能解决你的问题,请参考以下文章

Android:片段无法转换为上下文[重复]

python 用于数据探索的Python代码片段(例如,在数据科学项目中)

13 个非常有用的 Python 代码片段

JS的数据类型判断函数数组对象结构处理日期转换函数,浏览器类型判断函数合集

python将文本转换成语音的代码

python常用代码