Answers for "what is an array in python programming"

2

array in python

#in python we consider lists to be arrays 
MyArray = ["Kathmandu", "Bardaghat", "Butwal", "Biratnagar"]
#array of places of Nepal
#we can print it by 
print(MyArray)
Posted by: Guest on October-06-2021

Code answers related to "what is an array in python programming"

Python Answers by Framework

Browse Popular Code Answers by Language