1array = ["1st", "2nd", "3rd"]
2#prints: ['1st', '2nd', '3rd']
3array.append("4th")
4#prints: ['1st', '2nd', '3rd', '4th']
1#Setting The Array:#
2
3array = [250,630,221] #You can have as many items as you want#
4
5#Printing The Whole Array:#
6
7print(array)
8#output = [250, 630, 221,]#
9
10#Printing Individual Items From The Array:#
11
12print(array[0])
13#output = 250#
14
15print(array[1])
16#output = 630#
17
18print(array[2])
19#output = 221#
20#array[0] is the 1st array item, array[1] the 2nd, and so on#
21
22#Printing Multiple Items From The Array:#
23
24print(array[2],array[0])
25#output = 221#