#! python3 # Import modules and write comments to describe this program. import zipfile, os from PIL import Image from PIL import ImageFile #os.chdir(... ...
分类:
编程语言 时间:
2017-06-07 00:41:38
阅读次数:
217
#! python3 # resizeAndAddLogo.py - Resizes all images in current working directory to fit # in a 300x300 square, and adds catlogo.png to the lower-rig... ...
分类:
编程语言 时间:
2017-06-06 23:34:57
阅读次数:
329
项目1 动物空间记忆神经环路的大数据分析 1.对于项目问题的思考 思考一:细胞放电数据的属于微弱信号,采集信号中是否存在很大的噪声,是否对信号进行了放大(数据的准确性或者说信噪比) 思考二:是否可以简单描述一下实验过程(猜测:微电极阵列) 思考三:数据量和数据格式 2.项目的解决方案(初步) 1.探... ...
分类:
其他好文 时间:
2017-05-29 18:15:26
阅读次数:
174
以下我记录如何简单的搭建一个angular项目, 比较适合有前端基础,但又没有使用过angular的前端开发人员,因为我看到网上的教程又都配套的使用了一些其他框架或者打包工具,以及进行一些复杂的开发环境配置,不利于初级的人学习和理解。后续我也会陆续写几篇结合不同工具框架,以及在混合app开发中搭建a ...
分类:
其他好文 时间:
2017-05-22 00:19:52
阅读次数:
312
#! python3 # encoding: UTF-8 import os import docx from docx import Document from docx.shared import Pt from docx.shared import Inches os.chdir('C:\\U... ...
分类:
编程语言 时间:
2017-05-21 09:53:39
阅读次数:
305
import os,PyPDF2 os.chdir('C:\\Users\\Administrator\\Python35-32') dict=open('C:\\Users\\Administrator\\Python35-32\\dictionary.txt')#读入字典 pdfReader =... ...
分类:
编程语言 时间:
2017-05-21 09:49:50
阅读次数:
218
import os,PyPDF2 os.chdir('D:\\My Documents') for folderName, subfolders, filenames in os.walk('D:\\My Documents'): for file in filenames: if file.end... ...
分类:
编程语言 时间:
2017-05-18 22:36:09
阅读次数:
445
1 #! python3 2 import openpyxl,os,glob 3 os.chdir('C:\\Users\\Administrator\\Python35-32') 4 list=glob.glob('*.txt') 5 print(list) 6 wb = openpyxl.Wor... ...
分类:
编程语言 时间:
2017-05-16 00:42:33
阅读次数:
152
#! python3 # blankRowInserter.py import openpyxl,os os.chdir('C:\\Users\\Administrator\\Python35-32') n=int(input('rowNum')) m=int(input('insertrowNum... ...
分类:
编程语言 时间:
2017-05-14 10:29:00
阅读次数:
417
#! python3 # multiplicationTable.py import openpyxl,os from openpyxl.styles import Font, NamedStyle os.chdir('C:\\Users\\Administrator\\Python35-32') ... ...
分类:
编程语言 时间:
2017-05-12 01:38:15
阅读次数:
241