Floor 4 - Computer Room
Santa Rosa de Lima English Secondary School
聖羅撒英文中學
Colégio de Santa Rosa de Lima - Secção Inglesa
1.
Explore the concept of List
2.
Focusing on the List processing in looping
3.
Define while loop statement for List scanning
...
[
]
boxes = [ 1, 1, 1, 1, 1 ]
print( boxes[ 0 ] )
"
"
text = "abcde"
print( text[ 0 ] )
1
2
digits = [1, 2, 6, 3, 4, 5, 1, 2, 3, 4, 1, 2, 3, 4, 2, 6, 3, 4, 6, 4, 3, 5]
3
1
3
5
1
3
1
3
3
3
5
while
loop.1
2
digits = "1263451234123426346435"
3
4
while
loop.1
2
numbers = [3, 1, 4, 1, 5, 9, 1, 2, 7, 3, 10, 13, 4, 6, 7, 1, 2, 6, 9, 5, 3]
3
13