随笔分类 -  python应用

摘要:import time,os def showFilePROPERTIES(path): for root,dirs,files in os.walk(path,True): print('位置:' + root) for filename in files: state = os.stat(os. 阅读全文
posted @ 2016-02-29 10:22 李兴利 阅读(204) 评论(0) 推荐(0)
摘要:#应用环境:python2.7#!/usr/bin/env python # coding=utf-8 from __future__ import print_function import os try: from urllib import urlencode, quote_plus exce 阅读全文
posted @ 2016-01-29 12:47 李兴利 阅读(1048) 评论(0) 推荐(0)