Learn Python arrays (lists) step by step in this beginner-friendly tutorial! π
In this video, we cover:
How to create an array in Python
How to print arrays
How to add values to an array
How to remove values from an array
Example code from the video:
lecture = "Its All about Arrays"
print(lecture)
all_students = ["ABDULLAH","ali","hassan","ABC","adeel","bilal","XYZ"]
print(all_students)
all_students.remove("ABC")
all_students.remove("XYZ")
print(all_students)