import os for files in os.listdir('output'): if files.endswith(".py"): os.remove(os.path.join('output',files)) 下面是删除所有以及子目录 import os,shutil def del_f ...
分类:
编程语言 时间:
2020-01-31 21:07:43
阅读次数:
256
此章未能精读,待回顾random模块import randomrandom.random() 随机生成一个0-1之间随机的浮点数random.randint(a,b) 随机生成一个a-b之间的整数 a<=n<=brandom.uniform(a,b) 随机生成一个a-b之间的浮点数random.ra ...
分类:
其他好文 时间:
2020-01-30 21:11:43
阅读次数:
77
``` # 查看谷歌浏览器保存在本地的密码 import os import shutil import sqlite3 try: import win32crypt except ImportError as e: os.popen('pip install pywin32') import wi... ...
分类:
其他好文 时间:
2020-01-23 00:20:53
阅读次数:
359
python第十五天 今日内容 常用模块的介绍: time,datetime os,sys hashlib,json,pickle,collections time:和时间相关 封装了获取时间戳和字符串形式的时间的一些方法。 time.time():获取时间戳 time.gmtime([second ...
分类:
编程语言 时间:
2020-01-10 12:34:53
阅读次数:
71
``` import shutil import stat from tkinter import messagebox from tkinter.filedialog import * if __name__ == '__main__': try: strDirPath = askdirector... ...
分类:
其他好文 时间:
2020-01-05 09:50:57
阅读次数:
87
#!/usr/bin/python #-*-coding:utf-8-*- #指定编码格式,python默认unicode编码 from pypinyin import lazy_pinyin,Style import json,os,sys,shutil source_folder =r"G:\w... ...
分类:
其他好文 时间:
2020-01-03 19:44:11
阅读次数:
436
Python相关 Python安装 ubuntu配置pip源 windwos配置pip源 Python创建虚拟环境virtualenv和virtualenvwrapper Python3字典的setdefault方法 pythpn3 collections 模块 requests中文文档 json ...
分类:
其他好文 时间:
2020-01-02 20:56:04
阅读次数:
79
高级的 文件、文件夹、压缩包 处理模块 shutil.copyfileobj(fsrc, fdst[, length])将文件内容拷贝到另一个文件中 import shutil shutil.copyfileobj(open('old.xml','r'), open('new.xml', 'w')) ...
分类:
移动开发 时间:
2019-12-17 22:21:19
阅读次数:
135
拷贝文件 shutil.copy2('原文件', '现文件')shutil.copy2('file', 'temp') 拷贝目录 shutil.copytree("原目录", "新目录", ignore=shutil.ignore_patterns("*.pyc"))# shutil.copytre ...
分类:
其他好文 时间:
2019-12-13 00:20:54
阅读次数:
122
本文旨在总结一次完整的CNN图像分类过程(猫狗大战为例,使用Keras框架),免得经常遗忘。流程包括: + 从Kaggle下载猫狗数据集; + 利用python的os、shutil库,制作训练集和测试集; + 快速开发一个小模型作为基准;(只要效果比随机猜略好即可,通常需要有一点过拟合) + 根据基 ...
分类:
其他好文 时间:
2019-12-02 16:57:55
阅读次数:
153