上一页 1 2 3 4 5 6 7 8 9 10 ··· 28 下一页
摘要: 层级关系 # coding: utf-8 """ # @Time : 2022/2/4 16:17 # @Author : Gina Gao # @File : # @Software: PyCharm # @Descript: """ import sys,os db=[{'id':1,'name 阅读全文
posted @ 2022-02-04 22:26 yongqi-911 阅读(19) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2022-02-03 23:21 yongqi-911 阅读(0) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2022-02-02 21:04 yongqi-911 阅读(0) 评论(0) 推荐(0) 编辑
摘要: pip --upgrade批量更新过期的python库 https://blog.csdn.net/qq_35318838/article/details/76269692 今天看了下系统环境,不少python库都有了更新,再用旧版本库可能已经不适合了,就想把所有的库都更新到最新版本。查看系统里过期 阅读全文
posted @ 2022-02-01 21:24 yongqi-911 阅读(127) 评论(0) 推荐(0) 编辑
摘要: mysql varchar类型转为INT 排序,字符类型存的是数据,是不支持排序,需要强转为数值,再排序 SELECT * FROM test ORDER BY (字段名+ 0) DESC ; +0后就转换INT类型排序了 ,按照大小排序。完事儿,哈哈。 阅读全文
posted @ 2022-01-28 10:09 yongqi-911 阅读(513) 评论(0) 推荐(0) 编辑
摘要: # coding: utf-8import fakerimport random# 实践年会抽奖程序#第一奖 第二奖 第三奖 ##name_f=faker.Faker(locale="zh_CN")staff_list=[]for i in range(1,301): #随机生成员工300,顾头不顾 阅读全文
posted @ 2022-01-27 23:06 yongqi-911 阅读(42) 评论(0) 推荐(0) 编辑
摘要: #求总距离 height=100 distance=0 for i in range(10): distance+=height height/=2 if i==9: break distance+=height print(distance) 基础知 # coding: utf-8 """ # @ 阅读全文
posted @ 2022-01-25 22:27 yongqi-911 阅读(37) 评论(0) 推荐(0) 编辑
摘要: Python库Faker的使用(1):基础使用方法与函数速查https://blog.csdn.net/aasdad1/article/details/82854971 阅读全文
posted @ 2022-01-24 00:42 yongqi-911 阅读(26) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/traditional/p/14733610.html 待学习 阅读全文
posted @ 2022-01-24 00:34 yongqi-911 阅读(11) 评论(0) 推荐(0) 编辑
摘要: #pdf解析import pdfplumber pdf=pdfplumber.open(r"D:\python\PY_PM\gina_pdf_test\report_200.pdf") #pdf=pdfplumber.open(r"D:\python\PY_PM\gina_pdf_test\海南.p 阅读全文
posted @ 2022-01-20 18:34 yongqi-911 阅读(53) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 10 ··· 28 下一页