how to create an array in python
array = ["1st", "2nd", "3rd"]
#prints: ['1st', '2nd', '3rd']
array.append("4th")
#prints: ['1st', '2nd', '3rd', '4th']
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)
array in python
print(2+5)
arrays in python
# In python, arrays are actually called lists. Same thing tho
list_or_array = [1.0, 2, '3', True, [1, 2, 3, 4]]
"""
So, list can contain floats, integers, strings, booleans, nested lists, and
practically any other datatype
"""
python3 array
Array = [1,2,3,4,5]
how to make an array in python
#I will make an array and the contents will be called "Hello", "Nice", "Cool"
#Array
#By the way, you can make whatever variable name you want.
#I will also print the array
#Making the Array
variable = ["Hello", "Nice", "Cool"]
#printing the array
print(variable)
|