Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
pierian-data

Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place. Commercial Alternative to JupyterHub.

GitHub Repository: pierian-data/complete-python-3-bootcamp
Path: blob/master/07-Errors and Exception Handling/simple2.py
Views: 648
1
"""
2
A very simple script.
3
"""
4
5
def myfunc():
6
"""
7
An extremely simple function.
8
"""
9
first = 1
10
second = 2
11
print(first)
12
print('second')
13
14
myfunc()
15