python中数字和字符串和bytes的相互转换实例解析

2022/4/30 11:42:37

本文主要是介绍python中数字和字符串和bytes的相互转换实例解析,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

一 数字和字符串的相互转换
# int convert string
str(12345))
#string convert int
int('12345')    
二 数字和bytes的相互转换 1.数字转bytes: 需将num转为str,再利用codec的encode函数,将str转为bytes:encode(str(num))
num=1.2345
var1=str(num)
print(var1.encode())    

 

2. 格式:
  • int(bytes)
  • float(bytes)
实例:
b_num = b'1.234'
print('b_num:',b_num)
print(type(b_num))

c_num = float(b_num)
print('c_num:',c_num)
print(type(c_num))
  三 字符串和bytes的相互转换   1.字符转bytes: 方法一: from codec import encode,decode encode(str) 方法二: bytes(str,'UTF-8') 2.bytes转字符: 方法一: from codec import encode,decode decode(bytes) 方法二: str(bytes,'UTF-8')

这篇关于python中数字和字符串和bytes的相互转换实例解析的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程