Module 6: Semi structured data to tables
Creating dictionaries to represent data at different aggregations
Use enumerate() to get the index and the content at the same time
import string
letters = list(string.ascii_uppercase)
for i, l in enumerate(letters):
print(letters[i-1], i)Z 0
A 1
B 2
C 3
D 4
E 5
F 6
G 7
H 8
I 9
J 10
K 11
L 12
M 13
N 14
O 15
P 16
Q 17
R 18
S 19
T 20
U 21
V 22
W 23
X 24
Y 25 Skip the first value to as your base case
while loops
So when is a while loop really necessary?
Last updated