how to do an array in python code example
Example 1: python array
array = ["1st", "2nd", "3rd"];
#prints: ['1st', '2nd', '3rd']
Example 2: how to do an array in python
#the other answers are correct I just printed mine like this! Hope it helps!
array = ["1st", "2nd", "3rd"]
print(array)