The Jupyter Notebook is a web-based interactive computing platform.
- Run code in real time
- Identify error easily

with open('zen_of_python.txt') as f:
for line in f:
print(line)
print('\nI\'m done.')
The Jupyter Notebook is a web-based interactive computing platform.
with open('zen_of_python.txt') as f:
for line in f:
print(line)
print('\nI\'m done.')