Prerequisites

Website for the UCSB Data Science Capstone Preparation Workshop

Prerequisites

Learning Goals

Repeating actions: Loops

Range

while loops

current = 0
while current < 8:
	print(current)
	current += 1

for loops

for number in [1,2,3,4,5,6,7]:
	print(number)

# same as
for number in range(1,8):
	print(number)

Check your understanding