DSCC mini workshop 1
From CommunityData
Do you have python installed? If not go here: CDSW/Day_0_setup_and_tutorial.
Exercise 1: Python Tutor
Python Tutor pythontutor.com is a useful educational tool that can help you visualize the execution of your code.
Click "edit code" to try out your code! Let's try the Fibonacci sequence! It is a common introductory program.
l = [0,1]
for i in range(0,10):
l.append(l[-1]+l[-2])
print(l)