1array = ["1st", "2nd", "3rd"]
2#prints: ['1st', '2nd', '3rd']
3array.append("4th")
4#prints: ['1st', '2nd', '3rd', '4th']
1#in python we consider lists to be arrays
2MyArray = ["Kathmandu", "Bardaghat", "Butwal", "Biratnagar"]
3#array of places of Nepal
4#we can print it by
5print(MyArray)
1#I just printed mine like this! Hope it helps!
2
3array = ["1st", "2nd", "3rd"]
4print(array)
5
6#There are other ways too and different things you can put in the array!
7