Slide 31
Slide 31 text
range() produces a list of characters, if one boundary is a string digit instead of
casting the other input to int (e.g. range('8', 'c'))
[
0 => "8",
1 => "9",
2 => ":",
3 => ";",
...
8 => "@",
9 => "A",
10 => "B",
...
33 => "Y",
34 => "Z",
35 => "[",
...
41 => "a",
42 => "b",
43 => "c",
]
31/54