提示:文章写完后,目录可以自动生成,如何生成可参考右边的帮助文档

文章目录

  • 读取二进制文件
  • 一、Python Bytes to Int
  • 二、Python Bytes to String
  • 三、Python Bytes to Time

读取二进制文件

提示:在计算机中存储Bytes往往是更加节省空间的,但是在我们进行读取时需要解码。

  filepath='F:/2021.gps'binfile = open(filepath, 'rb') #打开二进制文件buf = binfile.read(2)#读取两位

一、Python Bytes to Int

buf = b'\xf1\xff'
print(int.from_bytes(buf, byteorder='big', signed=False))

二、Python Bytes to String

buf = b'\xf1\xff'
buf.decode('utf-8', errors='ignore')

三、Python Bytes to Time

时间戳转化

import time
time0=binfile.read(8)
timeArray = time.localtime(int.from_bytes(time0,  byteorder='big', signed=False))
FinalTime = time.strftime("%Y--%m--%d %H:%M:%S", timeArray)
print("time:",FinalTime)  # 2013--10--10 23:40:00

Python Bytes转化相关推荐

  1. Python bytes 和 string 相互转换 - Python零基础入门教程

    目录 一.Python bytes 和 string 区别 二.Python string 转 bytes 三. Python bytes 转 string 四.猜你喜欢 基础 Python 学习路线 ...

  2. Python: bytes、bytearray 详解

    文章目录 写在开头的话 Python: bytes.bytearray 00. 概述 01.bytes定义 02. bytes操作 03. bytearray定义 04. bytearray操作 05 ...

  3. python bytes转换为string_Python bytes string相互转换过程解析

    一.bytes和string区别 1.python bytes 也称字节序列,并非字符.取值范围 0 <= bytes <= 255,输出的时候最前面会有字符b修饰:string 是pyt ...

  4. python输入字符串转换为公式_将python字符串转化成长表达式的函数eval实例

    爬一个网页时,要保存的数据都没有encode,就导致保存下来的中文都变成unicode了... 那么,怎么把一个表示字符串的unicode还原成unicode呢? 函数eval(expression) ...

  5. python bytes' is not JSON serializable

    python bytes' is not JSON serializable 参考:https://blog.csdn.net/z564359805/article/details/80599126 ...

  6. python bytes()函数

    print(bytes('i',encoding='utf-8')) # b'i' 示例: # 创建一个空的bytes b1 = bytes() # 创建一个空的bytes值 b2 = b'' # 通 ...

  7. Python bytes 函数 - Python零基础入门教程

    目录 一.bytes 函数简介 二.bytes 函数使用 1.定义空的字节序列 bytes 2.定义指定个数的字节序列 bytes ,默认以 0 填充,不能是浮点数 3.定义指定内容的字节序列 byt ...

  8. 使用PyInstaller2将Python脚本转化为可执行文件(下-进阶使用)

    <使用PyInstaller2将Python脚本转化为可执行文件(下-进阶使用)>,作者:balian,原文链接:http://www.cnblogs.com/balian/archive ...

  9. python字符串转化列表_Python列表到字符串的转换

    python字符串转化列表 Sometimes we want to convert the list to a string so that we can print it or log it fo ...

最新文章

  1. 【extjs6学习笔记】1.1 初始:创建项目
  2. 题目1169:比较奇偶数个数
  3. 定时清理日志文件-python实现
  4. SimpleAdapter的用法
  5. WIN10安装ubuntu全过程
  6. 大数系列三——斐波那契数列——高效万进制,亿进制
  7. quratz启动流程
  8. linux设备驱动之串口移植,Linux设备驱动之UART驱动结构
  9. springboot拦截异常信息发送邮件提醒
  10. pandas知识点(汇总和计算描述统计)
  11. 微软拒绝修复影响所有 Windows 版本的 “RemotePotatoo” 提权0day
  12. 数据结构与算法之-----栈的应用(一)
  13. UIAutomator源码分析之启动和运行
  14. python爬虫教材推荐 豆瓣_学习python爬虫推荐书籍
  15. Caused by: org.springframework.expression.spel.SpelEvaluationException: EL1030E: The operator 'SUBTR
  16. 好玩又赚钱的链游有哪些?
  17. 原来手机做提词器这么简单,只要掌握这两个技巧
  18. GDB调试器——GDB调试器简介
  19. 表格的计算机在哪个文件夹,如何查看当前打开的Excel表格文件在电脑中的保存位置...
  20. Simulink Data Type Conversion模块使用笔记

热门文章

  1. 腾讯的新增长不止于微信
  2. java enumerator_Enumerator迭代器和Iterator迭代器区别
  3. Linux重定向用法详解
  4. 40.网络安全渗透测试—[穷举篇3]—[KALI的Metasploit穷举模块的使用]
  5. 讨论一下,乌云漏洞库的学习方法
  6. C++的三种实例化对象方式
  7. windows docker虚拟磁盘文件迁移ext4.vhdx
  8. 三级公共营养师是什么级别 报考需要什么条件
  9. ATS6.2安装部署笔记
  10. Android Studio 自带模板Bottom Navigation Activity 结合Fragment创建主页