
Python
jjpweb
个人简介
展开
-
派森下sqlite3的基本操作
import sqlite3import datetimeDBname='PrintSrv.DB'conn=sqlite3.connect(DBname)conn.execute("PRAGMA synchronous = OFF;")theCur=conn.cursor()findTableSql="select * from sqlite_master where type='ta...原创 2020-04-26 09:53:57 · 255 阅读 · 0 评论 -
ubuntu安装python3.7.5记录
系统:ubuntu16.04资源下载:python3.7.5.tgz www.python.org 派森 libressl3.0.2https://download.youkuaiyun.com/download/jjpweb/12036618派森安装中出现的ssl版本太低替换资源 用finalshell之类的ssh工具把...原创 2019-12-19 10:09:22 · 1882 阅读 · 0 评论 -
派森生成一年的所有日期和星期
#coding=utf-8import datetimebeginDate= datetime.datetime.strptime("2020-01-01","%Y-%m-%d")endDate= datetime.datetime.strptime("2020-12-31","%Y-%m-%d")dayList={}while beginDate <= endDate: ...原创 2019-12-06 11:59:45 · 467 阅读 · 0 评论