Answers for "how to do an array in python"

54

python array

array = ["1st", "2nd", "3rd"];
#prints: ['1st', '2nd', '3rd']
Posted by: Guest on December-19-2019
1

how to do an array in python

#I just printed mine like this! Hope it helps!

array = ["1st", "2nd", "3rd"]
print(array)

#There are other ways too and different things you can put in the array!
Posted by: Guest on February-20-2021

Code answers related to "how to do an array in python"

Python Answers by Framework

Browse Popular Code Answers by Language