In [1]:
for i in range(0,10):
print(i)
In [2]:
import matplotlib.pyplot as plt
plt.plot([1,2,3], [1,3,4], marker='o', markersize=14, markerfacecolor='red',
linewidth=2, markeredgewidth=2)
plt.title('plotTitle', fontname='Comic Sans MS', fontsize=28)
plt.show()
print('plotshown')
## Markdown
# Let's try to import a library
In [3]:
# Learning1
## sub level 2
Learning SciPy etc
* item 1
* item 2