You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

2.6 KiB

Notes in a Network

This is a notebook. A notebook is a sort of "active document" that allows you to combine text and executable code.

These notebooks are a starting point to approach re-publishing as a practice. A multi-dimensional attitude and methodology, which includes not only outputs but also sources, tools, process logs and more!

In [11]:
words = ['notes', 'in', 'a', 'network']
In [12]:
for word in words:
    for letter in word:
        print(word)
notes
notes
notes
notes
notes
in
in
a
network
network
network
network
network
network
network

Python

The programming language that we will use is Python.

In [13]:
for i in range(10):
    print(i * 'la')
la
lala
lalala
lalalala
lalalalala
lalalalalala
lalalalalalala
lalalalalalalala
lalalalalalalalala
In [ ]:
 
In [ ]: