python introduction list code example
Example: how to create a list in python
#creating a list
create_list = ["apple", "banana", "cherry"]
print(create_list)
#creating a list
create_list = ["apple", "banana", "cherry"]
print(create_list)