structure in python code example
Example 1: python data structures
string = 'Hi my name is Dr.Hippo'
integer = 12345
fl = 123.456
li = [1,2,3,,'string',None]
t = True
f = False
n = None
dictionary = {'key':'value'}
Example 2: python structure
$ pwd
~/code/sandman
$ tree
.
|- LICENSE
|- README.md
|- TODO.md
|- docs
| |-- conf.py
| |-- generated
| |-- index.rst
| |-- installation.rst
| |-- modules.rst
| |-- quickstart.rst
| |-- sandman.rst
|- requirements.txt
|- sandman
| |-- __init__.py
| |-- exception.py
| |-- model.py
| |-- sandman.py
| |-- test
| |-- models.py
| |-- test_sandman.py
|- setup.py