#humanize
Read more stories on Hashnode
Articles with this tag
字节转MB · 我们一般获取文件大小会获取字节,比如2,980,470 字节,但如果想要更人性化的方式表示,比如xxMB, xxGB,就需要用humanize 代码如下: import os import humanize # 文件路径 file_path =...