摘要:
os.path.getsize() 返回文件的字节数,如果为 0,则代表空。 import os if os.path.getsize('test.txt') == 0: print('这是空文件') 阅读全文
摘要:
import sys def line_file_test(): print(sys._getframe().f_lineno) # 获取当前行号(行数) line_file_test() 阅读全文
摘要:
Python的collections模块中namedtuple结构使用示例 # 命名元组,使得元组可像列表一样使用key访问(同时可以使用索引访问) from collections import namedtuple # test_name任意起的名字 Point = namedtuple('te 阅读全文