https://github.com/pachevalier/py-notes
Ressources pour apprendre Python
https://github.com/pachevalier/py-notes
Last synced: about 2 months ago
JSON representation
Ressources pour apprendre Python
- Host: GitHub
- URL: https://github.com/pachevalier/py-notes
- Owner: pachevalier
- Created: 2014-09-29T13:57:50.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2014-10-06T10:44:43.000Z (over 10 years ago)
- Last Synced: 2023-06-10T21:15:51.364Z (almost 2 years ago)
- Size: 129 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
py-notes
========## IDE
* [iPython Notebook](http://nbviewer.ipython.org/)
ipython notebook
## Importing Data
fname = "out.csv"
file = open(fname, "wb")
writer = csv.writer(file)
writer.writerow( ('Prix', 'Désignation') )
writer.writerow( (9.80, 'Tarte aux pommes') )
writer.writerow( ('13.40', 'Galette des rois') )
writer.writerow( (2.45, 'Beignet') )
file.close()## Data Visualisation
* [Tutorial pour apprendre Bokeh](http://nbviewer.ipython.org/gist/fonnesbeck/ad091b81bffda28fd657)