Home >Backend Development >Python Tutorial >Python common type conversion implementation

Python common type conversion implementation

Guanhui
Guanhuiforward
2020-07-28 18:22:142877browse

Python common type conversion implementation

##1. Convert byte and str to each other

b = b"example" 
s = "example" 
bytes(s, encoding = "utf8") 
str(b, encoding = "utf-8")


2. Conversion between byte and int

b=b'\x01\x02'
num=int.from_bytes(b,'little')
b1=num.to_bytes(2,'little')


##3. Conversion between byte and float

import struct
s=b'@zQ\x16'
def byteToFloat(b):
  return struct.unpack('!f',s)[0]

def floatToBytes(f):
  bs = struct.pack("f",f)
  return bytes((bs[3],bs[2],bs[1],bs[0]))
f1=byteToFloat(s)
floatToBytes(f1)

4. Conversion between str and bytearray

str1='aaabb'
ba=bytearray(str1,encoding='utf-8')
str2=ba.decode('utf8')
Recommended tutorial: "

Python Tutorial

"

The above is the detailed content of Python common type conversion implementation. For more information, please follow other related articles on the PHP Chinese website!

Statement:
This article is reproduced at:jb51.net. If there is any infringement, please contact admin@php.cn delete