One Pager Cheat Sheet
- We will discuss 
arraysand learn how tostoreandmanipulatemultiple data values in our program. - Arrays are a 
data structurethat can store a collection of values withindexesand a specificlength, making it easier to group similar elements in a program. - In Python, 
listsare used to store multipleelementsof differentdata types, such asstringsandintegers. - Both examples of list initialization in Python, with different data types stored as elements, are valid, and neither would generate an error.
 - Various operations such as 
adding,removing,searchingandprinting, can be done onarraysto make their usage in programming more efficient. - In Python, list operations such as 
append(),pop(),remove(), andlen()can be used to manipulate and access information about lists (or arrays). - The 
.append()and.pop()methods of lists are used to add elements and remove the element at index 2 respectively, resulting in the list ["Ford", "BMW"]. - The code provided will output 7, as this is the element located at index 
2in the listnumbersof elements3, 2, 5, 7, 3, 6, due to Python'sindexingstarting from 0 for the first element. - We discussed arrays and the variety of 
operationsthat can be performed on them, which can help us to create meaningful programs and applications. 



