07 2024 档案

摘要:本文介绍清空list的四种方法,以及 list=[ ] 和 list.clear() 在使用中的区别(坑)。 1、使用clear()方法 lists = [1, 2, 1, 1, 5] lists.clear() print(lists) >>>[] 2、重新初始化列表:初始化该范围内的列表,初始化 阅读全文
posted @ 2024-07-29 19:31 嗨学编程 阅读(851) 评论(0) 推荐(0) 编辑
摘要:1.环境准备 新建一个 foo 文件夹,其下包含一个 bar.py 文件 $ tree foo foo └── bar.py 0 directories, 1 file bar.py 的内容非常简单,只写了个 print 语句 print("successful to be imported") 只 阅读全文
posted @ 2024-07-24 19:16 嗨学编程 阅读(154) 评论(0) 推荐(0) 编辑
摘要:在 Python 中,可以采用 pandas、pyexcel、win32com 和 xls2xlsx 这四个模块,实现 xls 转 xlsx 格式。 以 Excel 示例文件 test_Excel.xls 为例,具体内容如下图所示: 1.pandas 安装命令 pip install pandas 阅读全文
posted @ 2024-07-20 15:03 嗨学编程 阅读(188) 评论(0) 推荐(0) 编辑
摘要:一、os.stat().st_size os.stat(filePath) 返回读取指定文件的相关属性,然后利用 stat 模块进行处理。 import os os.stat('data_feather_ys.feather') # os.stat_result(st_mode=33206, st_ 阅读全文
posted @ 2024-07-16 15:33 嗨学编程 阅读(119) 评论(0) 推荐(0) 编辑
摘要:一、os.popen()方法 1.使用语法 os.popen() 方法用于从一个命令打开一个管道。 os.popen(cmd).read() 获取执行后结果。 os.popen(command[, mode[, bufsize]]) # 使用的命令 # 模式权限:默认'r'或者'w' # 文件需要的 阅读全文
posted @ 2024-07-04 16:14 嗨学编程 阅读(179) 评论(0) 推荐(0) 编辑