
python
wander1006
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Python之pip安装和卸载
一、PIP卸载 >python -m pip uninstall pip 二、PIP安装 > pip install xx -i https://mirrors.tuna.tsinghua.edu.cn/pypi/web/simple/ > python get-pip.py 三、验证测试 >pip install pdfminer原创 2020-06-18 15:08:12 · 1726 阅读 · 0 评论 -
Python在Windows平台应用
1、Python生成exe封装 # mysetup.py from distutils.core import setup import py2exe setup(console=["helloworld.py"]) >>>pythonmysetup.py py2exe 2、生成pyc文件 >>> import py_compile >>> py_compile.com原创 2014-04-13 15:07:56 · 1226 阅读 · 0 评论 -
Python实现mysql数据输出到word表格中(源码)
# -*- coding: utf-8 -*- import os,sys,win32com import MySQLdb,datetime import win32com.client reload(sys) sys.setdefaultencoding('utf-8') conn= MySQLdb.connect(host='localhost',user原创 2016-10-20 15:04:08 · 3245 阅读 · 0 评论