一、vim安装与简单的配置以及光标字体样式更改 vim安装 在命令行里输入 sudo apt-get install vim-gtk (Ubuntu系统) 在命令行中输入 vi 然后连续按两次tab键,查看有无 vim ,有的话即安装成功 vim 配置 在命令行输入 sudo vim /etc/vi ...
分类:
系统相关 时间:
2021-06-24 17:54:17
阅读次数:
0
dedecms常用的时间格式调用代码: {dede:field name='pubdate' function='strftime("%Y年%m月%d日 %H:%M:%S","@me")' /} 样式:2007年1月1日 18:30:02 {dede:field name='pubdate' fun ...
分类:
其他好文 时间:
2021-05-24 14:47:00
阅读次数:
0
with open('data1_1.txt', 'r', encoding = 'utf-8') as f: data=f.readlines()n = 0for line in data: if line.strip('\n') == '': continue n+=1print(f'共{n}行 ...
分类:
其他好文 时间:
2021-05-24 14:12:19
阅读次数:
0
x = [] f = open('C:\\Users\\J&K\\Desktop\\实验4文档相关代码和数据文件\\实验4文档相关代码和数据文件\\data6_1.txt', encoding='utf_8') y = f.readlines() for i in y: x.append(i.str ...
分类:
其他好文 时间:
2021-05-24 12:37:04
阅读次数:
0
写入文件的基本操作 f = open('01.txt',mode='a') f.write("\nhelloworld\n") import time def get_time(): return time.strftime('%Y_%m_%d-%H_%M') # TODO 创建一个文件,文件名为当 ...
分类:
其他好文 时间:
2021-05-24 09:05:40
阅读次数:
0
需求: 1.需要往数据库插入批量数据,且数据需要随机,带有日期格式的数据。 2.查看目的接收表,存在唯一key,字段2是日期格式。其他数据可以一样。 首先需要写一个链接数据库的函数:import MySQLdb class MySql(): def __init__(self, db): self. ...
分类:
数据库 时间:
2021-01-13 10:54:27
阅读次数:
0
微信数据转换 分析提取微信零钱数据 # 微信数据转换 def wxProcessDo(total_list, begin, companyName, accountingTitle): # 期初22.55 期末余额 421.65 total_list = total_list[17:] # 倒序输出 ...
分类:
微信 时间:
2020-11-18 13:08:56
阅读次数:
34
Python爬虫学习使用urllib3抓点网页数据并查找匹配。 ...
分类:
编程语言 时间:
2020-07-18 19:54:57
阅读次数:
63
2020-07-03 datetime模块 一般就使用 datetime模块中, datetime类中,now()方法。 可通过strftime方法转换。 一句话表示用法: import datetime datetime.datetime.now().strftime("%Y%m%d-%H%M%S ...
分类:
编程语言 时间:
2020-07-04 10:26:28
阅读次数:
70
通过logging模块,重写一个logging2模块,独立开启线程,将待写的日志信息异步放入队列,做到日志输出不影响主流程性能,环境python3.8 logging2.py import os import threading import queue import time import dat ...
分类:
编程语言 时间:
2020-06-28 09:45:08
阅读次数:
99