An open API service indexing awesome lists of open source software.

https://github.com/napo/corso_python_trento_201808


https://github.com/napo/corso_python_trento_201808

examples introduction introduction-to-programming python

Last synced: 3 months ago
JSON representation

Awesome Lists containing this project

README

        

# Alcuni appunti del corso python
## per i prescritti al corso di laurea in data science 2018/2019

### Documentazione online
#### ufficiale in inglese
* https://docs.python.org/3/
* https://docs.python.org/3/tutorial/index.html
#### ufficiale in italiano
* https://www.python.it/doc/Howtothink/Howtothink-html-it/index.htm
* https://www.python.it/doc/newbie/
#### tutorial online
* http://www.html.it/guide/guida-python/
* https://www.w3schools.com/python/default.asp
#### cheat sheats
* http://ehmatthes.github.io/pcc/cheatsheets/README.html
### Documentarsi da command line
il comando
```python
pydoc
```
interrogare una parola chiave
```python
pydoc -k time
```
avviare una interfaccia web
```python
pydoc -p 8000
```
qui è necessario aprire il browser a http://localhost:8000
Il numero 8000 cambia in relazione al valore che si assegna dopo p

### Documentarsi dentro jupyter notebook
è sufficiente aggiungere il punto di domanda dopo il comando:

Es.
```python
list?
```
oppure usare il comando help passando, come parametro, il comando

Es.
```python
help(list)
```