I will put in a grade tonight for having signed up for Digital Portfolio. There are still 7 of you who have not signed up!
Warmup:
What does the output of this code look like?
for icnt in range (10, 1, -3)
print(icnt)
num1 = icnt
for jcnt in range (1,5)
num1 = num1 + jcnt
print(icnt, jcnt, num1)
Warmup:
What does the output of this code look like?
for icnt in range (10, 1, -3)
print(icnt)
num1 = icnt
for jcnt in range (1,5)
num1 = num1 + jcnt
print(icnt, jcnt, num1)