随笔分类 -  小功能代码

代码杂货铺
摘要:import osimport xml.dom.minidomdef replace_value(xmlpath, tag_name, n): try: # 文件读取 dom = xml.dom.minidom.parse(xmlpath) root = dom.documentElement # 阅读全文
posted @ 2020-03-25 14:37 gavincc 阅读(273) 评论(0) 推荐(0)
摘要:1.重置WinSock重新查看: 在Windows键+X键,点击管理员命令提示符中运行netsh winsock reset回车。 阅读全文
posted @ 2020-02-20 13:21 gavincc 阅读(2105) 评论(0) 推荐(0)
摘要:import time import datetime class Timer: def __init__(self): self.prompt = '未开始计时' self.start_time = 0 self.stop_time = 0 self.time_subtraction = 0 de 阅读全文
posted @ 2020-02-05 09:20 gavincc 阅读(181) 评论(0) 推荐(0)