上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 34 下一页
  2022年11月28日
摘要: 通过宝塔的webhook插件,实现把码云上的项目自动同步到web服务器指定路径下 第一步:确保web服务器里安装了git 可通过git –version查看 第二步:进入宝塔面板,软件管理-》宝塔插件,搜索wekhook,然后安装即可 第三步:添加hook 执行脚步内容: #!/bin/bash e 阅读全文
posted @ 2022-11-28 17:45 kevin_yang123 阅读(506) 评论(0) 推荐(0) 编辑
  2022年11月22日
摘要: import random f1 = 0 f2 = 0 f3 = 0 f4 = 0 f5 = 0 f6 = 0 for _ in range(6000): face = random.randint(1, 6) if face == 1: f1 += 1 elif face == 2: f2 += 阅读全文
posted @ 2022-11-22 14:01 kevin_yang123 阅读(236) 评论(0) 推荐(0) 编辑
摘要: PS F:\python\Python-Core-50-Courses-master\learn_python> python hello world.py C:\Users\huawei\AppData\Local\Microsoft\WindowsApps\python.exe: can't o 阅读全文
posted @ 2022-11-22 13:54 kevin_yang123 阅读(33) 评论(0) 推荐(0) 编辑
  2022年11月19日
摘要: if __name__ =='__main__': #列表的定义 team_list =['da','xiao_biao','team'] print(team_list) #用len()输出列表长度 list_len =len(team_list) print(list_len) #访问列表的元素 阅读全文
posted @ 2022-11-19 17:08 kevin_yang123 阅读(17) 评论(0) 推荐(0) 编辑
摘要: 1.按下“Win + R”组合键,输入“dxdiag”后回车。2.选择“系统”选项卡,查看计算机的型号。 阅读全文
posted @ 2022-11-19 14:34 kevin_yang123 阅读(73) 评论(0) 推荐(0) 编辑
摘要: import random m = ("black", "blue", "purple", "yellow", "red", "orange", "brown", "gray", "pink") o = random.randint(0, 8) print(m[o]) 阅读全文
posted @ 2022-11-19 09:41 kevin_yang123 阅读(2) 评论(0) 推荐(0) 编辑
  2022年11月17日
摘要: 事务回滚 $t = \Yii::$app->db->beginTransaction(); $t->rollBack();$t->commit(); M()->startTrans(); //开启事务 M()->commit(); //提交事务 M()->rollback();//回滚 D('Age 阅读全文
posted @ 2022-11-17 15:12 kevin_yang123 阅读(23) 评论(0) 推荐(0) 编辑
  2022年11月7日
摘要: 请你给一个停车场设计一个停车系统。停车场总共有三种不同大小的车位:大,中和小,每种尺寸分别有固定数目的车位。 请你实现 ParkingSystem 类: ParkingSystem(int big, int medium, int small) 初始化 ParkingSystem 类,三个参数分别对 阅读全文
posted @ 2022-11-07 11:40 kevin_yang123 阅读(28) 评论(0) 推荐(0) 编辑
  2022年10月31日
摘要: //查询出所有需要待更新的数据,分页处理 $query = OrderExportJob::query(); $page = 1; $limit = 1000; $count = $data = $query->from('order_export_job') ->where('job_status 阅读全文
posted @ 2022-10-31 13:34 kevin_yang123 阅读(86) 评论(0) 推荐(0) 编辑
  2022年10月29日
摘要: explorer . 能够打开指定文件 阅读全文
posted @ 2022-10-29 14:13 kevin_yang123 阅读(18) 评论(0) 推荐(0) 编辑
上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 34 下一页