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 ] )
speeds = [5, 12, 8, 15, 9]
max_speed = 10
2
3
1
[5, 10, 8, 10, 9]
speeds = [5, 12, 8, 15, 9]
max_speed = 10
2
3
1
[5, 10, 8, 10, 9]
dna_segments = [12, 15, 18, 15, 20]
2
3
1
15
dna_segments = [12, 15, 18, 15, 20]
2
3
1
15
prices = [150, 200, 50, 100, 75, 300, 125]
target = 250
2
3
1
150 + 100 = 250
4