上一页 1 ··· 10 11 12 13 14 15 16 17 18 ··· 24 下一页
摘要: 学生-分数表 STUDENT_SCORE 想要在sql中根据学生的分数自动判定学生成绩的等级: SELECT NAME, CASE WHEN SCORE < 60 THEN '不及格' WHEN SCORE < 90 THEN '良好' ELSE '优秀' END AS RANK FROM STUD 阅读全文
posted @ 2020-01-02 09:53 StarZhai 阅读(1385) 评论(0) 推荐(0) 编辑
摘要: ['skræpi:] 一、参考资料 1.官方中文文档 https://scrapy-chs.readthedocs.io/zh_CN/latest/index.html 2.简单易操作的爬虫框架(simplified-scrapy) 3.爬虫框架Scrapy的安装与基本使用 https://www. 阅读全文
posted @ 2019-12-30 17:28 StarZhai 阅读(713) 评论(0) 推荐(0) 编辑
摘要: 困惑点: https://www.v2ex.com/t/493216 数据工程师的崛起: https://links.jianshu.com/go?to=https%3A%2F%2Fwww.freecodecamp.org%2Fnews%2Fthe-rise-of-the-data-engineer 阅读全文
posted @ 2019-12-27 15:00 StarZhai 阅读(171) 评论(0) 推荐(0) 编辑
摘要: 数据中台:通过数据技术,对海量数据进行采集、计算、存储、加工,同时统一标准和口径。 实现方法:①数据标准化和规范化 ② 参考链接: https://blog.csdn.net/cqcre/article/details/96935800 https://mp.weixin.qq.com/s/_KsF 阅读全文
posted @ 2019-12-27 10:25 StarZhai 阅读(498) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/Neuf_Soleil/article/details/88925013 阅读全文
posted @ 2019-12-25 17:00 StarZhai 阅读(611) 评论(0) 推荐(0) 编辑
摘要: 1.检测人脸,画人脸中心的运动轨迹 import cv2 import numpy as np #import argparse from collections import deque #ap = argparse.ArgumentParser() #args = vars(ap.parse_a 阅读全文
posted @ 2019-12-25 13:13 StarZhai 阅读(1583) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/cmt110/p/7464944.html 阅读全文
posted @ 2019-12-23 10:09 StarZhai 阅读(1546) 评论(0) 推荐(0) 编辑
摘要: # -*- coding: cp936 -*- import re string = "xxxxxxxxxxxxxxxxxxxxxxxx entry '某某内容' for aaaaaaaaaaaaaaaaaa" result = re.findall(".*entry(.*)for.*",strin 阅读全文
posted @ 2019-12-20 16:10 StarZhai 阅读(4137) 评论(0) 推荐(0) 编辑
摘要: 一、github项目 https://github.com/ildoonet/tf-pose-estimation 1.部署环境时候遇到的问题 ① 按照文档配置环境,其中visual C++ Build tools需要单独安装。参考文档 ②pip安装pycocotools报错“ERROR: Fail 阅读全文
posted @ 2019-12-19 16:17 StarZhai 阅读(1389) 评论(0) 推荐(0) 编辑
摘要: 如果要写入一些不是字符串的东西, 那么将需要先进行转换: 实例 #!/usr/bin/python3# 打开一个文件f = open("/tmp/foo1.txt", "w")value = ('www.runoob.com', 14)s = str(value)f.write(s)# 关闭打开的文 阅读全文
posted @ 2019-12-18 09:35 StarZhai 阅读(13046) 评论(0) 推荐(0) 编辑
上一页 1 ··· 10 11 12 13 14 15 16 17 18 ··· 24 下一页