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 = [12, -7, 34, -19, 8, -3, 25, -42, 16, -11, 7, -28, 45, -9, 5, -14, 20, -6, 33, -21]
2
3
1
numbers = [12, -7, 34, -19, 8, -3, 25, -42, 16, -11, 7, -28, 45, -9, 5, -14, 20, -6, 33, -21]
2
3
1
numbers = [10, 15, 20, 5, 7, 9, 2, 3, 1, 4]
1
[10, 15, 20]
[5, 7, 9]
[2, 3]
[1, 4]
* Separate list into increasing sequences