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 = "1263451234123426346435"
Product of all digits: 21499084800
while
loop to generate numbers from 1 to 50, increasing by 3 in each step. The program should then merge all the numbers into a single string and print the result.1
2
Output: "1, 4, 7, 10, 13, 16, 19, 22, 25, 28, 31, 34, 37, 40, 43, 46, 49"
"ILovePython"
using a while
loop and prints the result.1
2
Input: "ILovePython"
Output: "nohtyPevoLI"