
python
文章平均质量分 52
初_xue_者
这个作者很懒,什么都没留下…
展开
-
python获取帮助
if you want to learn Linux,you must know how to use man。 if you want to learn python ,you must know how to use help! here list three way to get help for python question。 还是用中文好! help(object原创 2016-11-28 14:11:38 · 334 阅读 · 0 评论 -
python多版本安装package
whereis python2 pip install -t /usr/local/lib/python2.7/site-packages/ xlrd转载 2016-12-04 14:18:02 · 487 阅读 · 0 评论 -
文件备份
''' 实现输入当前文件夹 目标文件夹 把当前文件夹以及其子文件夹里的TXT结尾的文件都备份到目标文件夹 ''' import os import shutil import re import logging logging.basicConfig(level=logging.DEBUG, format=' %(asctime)s - %(levelname)原创 2017-01-04 16:07:57 · 306 阅读 · 0 评论 -
python控制鼠标 pyautogui
#用这个代码可以画图!! #!python3 import pyautogui import time print('Press Ctrl-C to quit') try: #while True: #ToDo: Get and print the mouse coordinates x,y = pyautogui.position()原创 2017-01-05 16:02:34 · 2680 阅读 · 0 评论