上一页 1 ··· 14 15 16 17 18 19 20 21 22 ··· 28 下一页
摘要: 普通方法: 对列表进行排序,然后根据长度为奇数或者偶数的不同情况计算中位数 def huahua(x): length = len(x) print(length) x.sort() print(x) if (length % 2)== 1: z=length // 2 y = x[z] else: 阅读全文
posted @ 2021-04-14 15:26 yongqi-911 阅读(178) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2021-04-14 12:52 yongqi-911 阅读(421) 评论(0) 推荐(0) 编辑
摘要: [root@syq_paydev_pj-znty_z3transfer_formal_10.99.4.34 genius_fund]#vi /etc/hosts vim vi config.py 查看数据库配置 vi /etc/hosts 数据库域名配置 阅读全文
posted @ 2021-04-12 10:16 yongqi-911 阅读(355) 评论(0) 推荐(0) 编辑
摘要: 每10秒执行定时任务-crontab /data/crontab.shsleep 10; /data/crontab.shsleep 20; /data/crontab.shsleep 30; /data/crontab.shsleep 40; /data/crontab.shsleep 50; / 阅读全文
posted @ 2021-04-02 14:13 yongqi-911 阅读(6534) 评论(0) 推荐(0) 编辑
摘要: BEGIN MERGE PGENIUS..DISC_CLS_FND AS TARGET USING (SELECT SEQ,ISVALID, DISC_ID, DISC_CLS_CODE,DECLAREDATE FROM #INSERTED_DISC_CLS WHERE DISC_TYPE=2) A 阅读全文
posted @ 2021-04-02 11:29 yongqi-911 阅读(369) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2021-03-26 18:28 yongqi-911 阅读(0) 评论(0) 推荐(0) 编辑
摘要: pandas读取MySql/SqlServer数据 读取MySql数据1 import MySQLdb2 import pandas as pd4 conn = MySQLdb.connect(host = host,port = port,user = username,passwd = pass 阅读全文
posted @ 2021-03-25 16:56 yongqi-911 阅读(125) 评论(0) 推荐(0) 编辑
摘要: import re a = '''asdfsafhellopass: 234455worldafdsf ''' b = re.findall('hello(.*?)world',a) c = re.findall('hello(.*?)world',a,re.S|re.I ) print('b is 阅读全文
posted @ 2021-03-25 16:11 yongqi-911 阅读(34) 评论(0) 推荐(0) 编辑
摘要: 学习网址 https://www.bilibili.com/video/BV1L5411W7wD?p=7 阅读全文
posted @ 2021-03-25 15:59 yongqi-911 阅读(28) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2021-03-22 17:43 yongqi-911 阅读(0) 评论(0) 推荐(0) 编辑
上一页 1 ··· 14 15 16 17 18 19 20 21 22 ··· 28 下一页