会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
StarZhai
博客园
首页
新随笔
联系
订阅
管理
上一页
1
···
10
11
12
13
14
15
16
17
18
···
24
下一页
2020年1月2日
SQL的case when then else end as语句的用法
摘要: 学生-分数表 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
阅读(1486)
评论(0)
推荐(0)
2019年12月30日
基于scrapy框架的爬虫项目(一)
摘要: ['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
阅读(730)
评论(0)
推荐(0)
2019年12月27日
迷茫的大数据
摘要: 困惑点: 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
阅读(193)
评论(0)
推荐(0)
数据中台简介
摘要: 数据中台:通过数据技术,对海量数据进行采集、计算、存储、加工,同时统一标准和口径。 实现方法:①数据标准化和规范化 ② 参考链接: https://blog.csdn.net/cqcre/article/details/96935800 https://mp.weixin.qq.com/s/_KsF
阅读全文
posted @ 2019-12-27 10:25 StarZhai
阅读(541)
评论(0)
推荐(0)
2019年12月25日
Vue + Spring Boot 项目实战
摘要: https://blog.csdn.net/Neuf_Soleil/article/details/88925013
阅读全文
posted @ 2019-12-25 17:00 StarZhai
阅读(621)
评论(0)
推荐(0)
opencv画轨迹
摘要: 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
阅读(1657)
评论(0)
推荐(0)
2019年12月23日
python读取xml文件内特定数据
摘要: https://www.cnblogs.com/cmt110/p/7464944.html
阅读全文
posted @ 2019-12-23 10:09 StarZhai
阅读(1558)
评论(0)
推荐(0)
2019年12月20日
使用Python 正则匹配两个特定字符之间的字符方法
摘要: # -*- coding: cp936 -*- import re string = "xxxxxxxxxxxxxxxxxxxxxxxx entry '某某内容' for aaaaaaaaaaaaaaaaaa" result = re.findall(".*entry(.*)for.*",strin
阅读全文
posted @ 2019-12-20 16:10 StarZhai
阅读(4154)
评论(0)
推荐(0)
2019年12月19日
低资源版动作识别:tf-pose-estimation
摘要: 一、github项目 https://github.com/ildoonet/tf-pose-estimation 1.部署环境时候遇到的问题 ① 按照文档配置环境,其中visual C++ Build tools需要单独安装。参考文档 ②pip安装pycocotools报错“ERROR: Fail
阅读全文
posted @ 2019-12-19 16:17 StarZhai
阅读(1422)
评论(0)
推荐(0)
2019年12月18日
python输出内容到本地txt文件
摘要: 如果要写入一些不是字符串的东西, 那么将需要先进行转换: 实例 #!/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
阅读(13107)
评论(0)
推荐(0)
上一页
1
···
10
11
12
13
14
15
16
17
18
···
24
下一页
公告