一:如何在notepad++中自行设置直接运行python文件(.py文件)的快捷键
http://blog.csdn.net/u013793399/article/details/51291017
二:神经网络(9行代码初识神经网络)
http://blog.csdn.net/jacke121/article/details/75094242
但是较大的数据时,总是出现runtimewarning:overflow encoutered in exp,暂时未解决。
三:如何利用pandas模块把excel数据导入到python中(读/写)
http://blog.csdn.net/GeekLeee/article/details/52903082(但是没有搞懂skiprows和sheetname怎么搞)
http://blog.csdn.net/stronglyh/article/details/54312465
http://blog.csdn.net/tongxinzhazha/article/details/78796952(强烈推荐)
1 # -*- coding: utf-8 -*- 2 import pandas as pd 3 pd.read_excel(r"C:\Users\hui\Desktop\b.xlsx",sheetname=0) 4 training_set_inputs=pd.read_excel(r"C:\Users\hui\Desktop\a.xlsx",sheetname=0) 5 training_set_outputs=pd.read_excel(r"C:\Users\hui\Desktop\b.xlsx",sheetname=0) 6 print(training_set_inputs) 7 print(training_set_inputs.T) 8 print(training_set_outputs) 9 print(training_set_outputs.T)