摘要: 1、os.path.getsize(file_path),返回文件字节大小,int类型。 import os file_size = os.path.getsize('/home/pi/jodie/log/jodie-test.log') print(file_size, type(file_siz 阅读全文
posted @ 2023-08-23 20:34 小鱼小鱼hi 阅读(279) 评论(0) 推荐(0) 编辑
摘要: 1、数字整数、小数部分分离 方法1:math模块提供的floor方法 xs=num-math.floor(num) zs=num-xs return 'zhengShu: {0}, xiaoShu: {1}'.format(str(zs),str(xs)) 方法2:将浮点类型的数字转化为字符串 zs 阅读全文
posted @ 2023-08-23 19:54 小鱼小鱼hi 阅读(8) 评论(0) 推荐(0) 编辑