随笔- 310
文章- 1
评论- 0
阅读-
85655
09 2022 档案
python 读取excel
摘要:#!/usr/bin/env python # -*- coding: utf-8 -*- import warnings warnings.filterwarnings('ignore') import openpyxl from openpyxl.cell import MergedCell i
阅读全文
telnet 超时断开连接
摘要:timeout 5 telnet 127.0.0.1 36554 #5秒后断开连接
阅读全文
mysql 设置 update操作时自动更新时间字段
摘要:建表 CREATE TABLE `time_update` ( `id` int(10) unsigned NOT NULL DEFAULT '0', `name_seq` int(10) unsigned NOT NULL DEFAULT '0', `mod_time` timestamp NOT
阅读全文