上一页 1 2 3 4 5 6 7 ··· 11 下一页
摘要: 使用pyinstaller将python程序打包成可执行的exe,步骤:1. 安装pyinstaller后打开cmd2. cd 到所在文件夹cd C:\Users\Helen\Desktop\新建文件夹3. 进行... 阅读全文
posted @ 2020-04-04 11:46 HelenLee01 阅读(58) 评论(0) 推荐(0) 编辑
摘要: 使用pyinstaller打包exe闪退,怎么查看报错?1. 打开cmd2. cd到exe所在文件夹cd C:\Users\Helen\Desktop\新建文件夹\dist3. 输入 .\***.exe.\... 阅读全文
posted @ 2020-04-04 11:38 HelenLee01 阅读(502) 评论(0) 推荐(0) 编辑
摘要: 推荐给大家python中turtle绘图几个超好看的颜色color = ['lightcoral', 'coral', 'darkorange', 'gold', 'palegreen', 'paleturquo... 阅读全文
posted @ 2020-04-03 17:02 HelenLee01 阅读(1490) 评论(0) 推荐(0) 编辑
摘要: 天啊,没想到python龟绘制的图居然这么方便!'''Created on Nov 18, 2017@author: QiZhao'''代码传送门:import turtle # 设置初始位置turtle.pe... 阅读全文
posted @ 2020-04-03 16:59 HelenLee01 阅读(159) 评论(0) 推荐(0) 编辑
摘要: turtle龟绘制无敌螺旋转,转,转!from turtle import *from time import *import turtlet = Turtle()t.pensize(2)turtle.bgcol... 阅读全文
posted @ 2020-04-03 16:55 HelenLee01 阅读(265) 评论(0) 推荐(0) 编辑
摘要: turtle龟绘制疯狂洗脑词“淡黄的长裙,蓬松的头发”,为什么文字会有声音!不要再唱啦!import turtleimport randomt = turtle.Pen()s = 10colorss = ['li... 阅读全文
posted @ 2020-04-03 16:52 HelenLee01 阅读(120) 评论(0) 推荐(0) 编辑
摘要: python识别文本情感需要用到人工智能paddlehub模块中的senta_lstm模型。完整代码:import paddlehub as hub# 加载模型senta = hub.Module(name = ... 阅读全文
posted @ 2020-04-02 19:54 HelenLee01 阅读(309) 评论(0) 推荐(0) 编辑
摘要: 检测人脸是否佩戴口罩需要用到的是人工智能的paddlehub模块中的pyramidbox_lite_mobile_mask模型。代码传送门:import paddlehub as hubimport matplo... 阅读全文
posted @ 2020-04-02 19:41 HelenLee01 阅读(527) 评论(0) 推荐(0) 编辑
摘要: 0代码抓取数据,Web Scraper真的超好用!使用方法:1. 下载Web Scraper,安装在chrome(谷歌浏览器)上2. F12,点击Create Sitemap创建一个项目3. 填写url,后面加了... 阅读全文
posted @ 2020-03-30 21:25 HelenLee01 阅读(119) 评论(0) 推荐(0) 编辑
摘要: 这个项目超级火!将图片转化成像素风的画。不要问,问就是Tiler!项目地址:git clone https://github.com/nuno-faria/tiler.git安装依赖包:pip install -... 阅读全文
posted @ 2020-03-30 21:12 HelenLee01 阅读(1453) 评论(1) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 ··· 11 下一页