你的心如利箭 在风中笔直的飞翔
github DNS ALEXA CDN
jquery JS CSS CSS3 HTML5 svg php --- isux w3cplus

21270

  博客园  :: 首页  ::  ::  ::  :: 管理

随笔分类 -  python3

摘要:https://www.runoob.com/python/python-date-time.html 当前时间: import time now=time.strftime('%Y-%m-%d %H:%M:%S',time.localtime(int(time.time())-24*60*60)) 阅读全文
posted @ 2021-07-11 20:52 bjhhh 阅读(122) 评论(0) 推荐(0)

摘要:安装pdfminer模块: pip install pdfminer3k 安装docx模块: https://www.lfd.uci.edu/~gohlke/pythonlibs/ 下载 python_docx‑0.8.10‑py2.py3‑none‑any.whl 安装 pip install p 阅读全文
posted @ 2019-07-30 00:13 bjhhh 阅读(844) 评论(0) 推荐(0)

摘要:100以内奇数: ls = [x for x in range(100) if x % 2 == 1] 100以内偶数: ls = list(x for x in range(100) if x % 2 == 0) 20以内的2次方: ls = list(x * x for x in range(2 阅读全文
posted @ 2019-04-20 18:41 bjhhh 阅读(364) 评论(0) 推荐(0)

摘要:https://www.cnblogs.com/MnCu8261/p/5494807.html shutil模块 http://blog.csdn.net/rozol/article/details/71422712 操作系统与路径 模块(os / os.path / pathlib) os模块和s 阅读全文
posted @ 2018-02-04 12:36 bjhhh 阅读(799) 评论(0) 推荐(0)

摘要:https://www.youtube.com/watch?v=DnTn3Yx-Nvg join功能: Queue功能 https://www.youtube.com/watch?v=DnTn3Yx-Nvg https://github.com/MorvanZhou/tutorials/blob/m 阅读全文
posted @ 2018-01-28 01:38 bjhhh 阅读(448) 评论(0) 推荐(0)

摘要:http://www.numpy.org/ numpy官网 http://cwiki.apachecn.org/pages/viewpage.action?pageId=10030181 scikit-learn 0.18 中文文档(暂时先放这儿) https://www.imooc.com/lea 阅读全文
posted @ 2018-01-16 02:24 bjhhh 阅读(563) 评论(0) 推荐(0)

摘要:要看一种技术在本地的流行程度,最简单的就是找招聘网站按关键词搜索。 比如今天查到的职位数量是vue 1296个,react 1204个,angular 721个。国际上比较流行的是react,本地市场中vue倒更受欢迎。所以学习的话可以先考虑前两个。 比如我们可以功利化一点:某些语言的薪资中值比较低 阅读全文
posted @ 2018-01-12 01:03 bjhhh

摘要:http://www.linchaoqun.com/html/cms/content.jsp?id=1509528630774 Python3笔记:Python与ECMAScript部分语法对比 https://frankfang.github.io/es-6-tutorials/ ES 6 新特性 阅读全文
posted @ 2017-12-31 16:06 bjhhh 阅读(1911) 评论(0) 推荐(0)

摘要:图形用户界面(Graphical User Interface,简称 GUI) http://www.runoob.com/python/python-gui-tkinter.html Python GUI编程(Tkinter) —— 菜鸟教程 随便看看: http://www.cnblogs.co 阅读全文
posted @ 2017-12-06 00:47 bjhhh 阅读(698) 评论(0) 推荐(0)

摘要:http://flask.pocoo.org/ http://flask.pocoo.org/docs/0.12/api/#api API http://docs.pythontab.com/flask/flask0.10/quickstart.html 文档 http://flask-restfu 阅读全文
posted @ 2017-12-04 21:01 bjhhh 阅读(316) 评论(0) 推荐(0)

摘要:http://blog.csdn.net/be_quiet_endeavor/article/details/73929077 用Pyinstaller把Python3.4程序打包成可执行文件exe 环境是: Windows7 64位操作系统 Python3.6.3 需要先安装 setuptools 阅读全文
posted @ 2017-11-26 18:01 bjhhh 阅读(926) 评论(0) 推荐(0)

摘要:http://blog.csdn.net/marksinoberg/article/details/52137547 Python 文本转语音 文本转为语音(使用Speech API) 需要安装 pywin32 库 蜂鸣器: pyttsx方式 pyttsx 是Python的一个关于文字转语音方面的很 阅读全文
posted @ 2017-11-26 17:36 bjhhh 阅读(10253) 评论(1) 推荐(0)

摘要:Matplotlib是一个Python 2D绘图库,可以跨平台生成各种硬拷贝格式和交互式环境的出版品质量图。 http://matplotlib.org/ matplotlib官网 http://python.jobbole.com/85106/ matplotlib 绘图可视化知识点整理 http 阅读全文
posted @ 2017-11-02 23:18 bjhhh 阅读(507) 评论(0) 推荐(0)

摘要:arrow是个时间日期库,简洁易用。支持python3.6 https://arrow.readthedocs.io/en/latest/ arrow官网api https://github.com/crsmithdev/arrow arrow的GitHub托管的地址 http://www.ipla 阅读全文
posted @ 2017-10-28 00:29 bjhhh 阅读(2190) 评论(0) 推荐(0)

摘要:scrapy 一个快速高级的屏幕爬取及网页采集框架 http://scrapy.org/ 官网 https://docs.scrapy.org/en/latest/ Scrapy1.4文档 http://scrapy-chs.readthedocs.io/zh_CN/latest/index.htm 阅读全文
posted @ 2017-10-22 02:36 bjhhh 阅读(452) 评论(0) 推荐(0)

摘要:数据库查询结果,用json返回: 数据库查询结果,用json返回: 输出json .. 阅读全文
posted @ 2017-10-21 16:05 bjhhh 阅读(3155) 评论(0) 推荐(0)

摘要:PyAutoGUI 是一个人性化的跨平台 GUI 自动测试模块 pyautogui 库 2017-10-4 pip install pyautogui python pip.exe install pyautogui python3.6下,直接就可以安装了,无须其它依赖 http://blog.cs 阅读全文
posted @ 2017-10-21 15:59 bjhhh 阅读(13044) 评论(2) 推荐(0)

摘要:https://www.cnblogs.com/miki-peng/p/12904383.html 【python接口自动化】- openpyxl读取excel数据 2021-8-11 写EXCEL文件(xlwt库) # -*- coding: utf-8 -*- import xlwt book 阅读全文
posted @ 2017-10-21 15:54 bjhhh 阅读(619) 评论(0) 推荐(0)

摘要:https://www.liaoxuefeng.com/wiki/0014316089557264a6b348958f449949df42a6d3a2e542c000/0014320027235877860c87af5544f25a8deeb55141d60c5000 廖雪峰 由于PIL仅支持到Py 阅读全文
posted @ 2017-10-21 15:50 bjhhh 阅读(668) 评论(0) 推荐(0)

摘要:http://blog.csdn.net/u012566751/article/details/54094692 Tesseract-OCR入门使用1 http://blog.csdn.net/u012566751/article/details/54136836 Tesseract-OCR入门使用 阅读全文
posted @ 2017-10-21 15:45 bjhhh 阅读(11216) 评论(0) 推荐(0)