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 ] )
numbers = [1, 4, 6, 9, 13, 14, 17, 21, 26, 31, 34, 39, 43, 47, 50, 54, 59, 63, 67, 72, 76, 81, 85, 90, 93, 97, 100]
2
3
1
numbers = [1, 2, 3, 4, 5, 4, 3, 2, 1]
2
3
1
numbers = [-5, 0, 12, -8, 3, 0, 7]
while
loop and the append()
method to achieve this.2
3
1
[12, 3, 7]