摘要:
# from urllib.request import urlopen# from urllib.parse import urlencode# url = 'http://api.nnzhp.cn/api/user/login'# d = {'username':'niuhanyang','pa 阅读全文
摘要:
import hashlib# import md5 #python2里面#md5# password='abc123abc123abc123abc123abc123abc123abc123abc123abc123abc123'# # print(password.encode()) #bytes# 阅读全文
摘要:
import yagmailusername = '104628703@qq.com'password = 'sdg34234' #免费的邮箱,这里用授权码,一般自己公司的,直接写邮箱密码就行了。smtp = 'smtp.qq.com'mail = yagmail.SMTP(user=usernam 阅读全文
摘要:
import timeimport nnlogdef write_log(content): with open('text.log','a+',encoding='utf-8') as fw: data = time.strftime('%Y-%m-%d %H:%M:%S') s = '%s ,内 阅读全文
摘要:
读excelimport xlrdbook = xlrd.open_workbook('处女座学员名单.xlsx')# sheet1 = book.sheet_by_index(0)sheet2 = book.sheet_by_name('作业')# print(sheet2.row_values(0))#取某一行的数据# print(sheet2.col_values(0))#取某一列的数据# ... 阅读全文
摘要:
#模块 1、标准模块 python自带的 2、第三方模块 pymysql 3、自己写的python文件 一个python文件,就是一个模块 #1、导入模块的实质 就是把你导入的模块运行了一遍。 #2、查找模块的顺序 #1、在当前目录下找 #2、在python的环境变量里面去找 if __name__ 阅读全文
摘要:
import pymysql#ip port user password db#118.24.3.40 3306 jxz 123456 jxzconn = pymysql.connect(host='118.24.3.40',user='jxz', password='123456',db='jxz',port=3306, chars... 阅读全文
摘要:
造日志脚本def timestamp_to_str(timestamp=None,format='%Y-%m-%d %H:%M:%S'): '''时间戳转格式化好的时间,如果没有传时间戳,就获取当前的格式化时间''' if timestamp: time_tuple = time.localtime(timestamp) #把时间戳转成时间元组 r... 阅读全文
摘要:
#时间戳 从计算机诞生的那一天到现在过了多少秒#格式化好的时间import timeprint(time.strftime('%Y%m%d%H%M%S'))#取当前的时间,格式化好的print(time.time())# print(1560674704 + 60*60*24*365*10)#时间戳 阅读全文