In this article, we will be covering Lists in Python.
In Python, we can use lists like array way of other languages. In python, declaring a list is quite easy and simple and can store the type without declaring it implicitly while we initialize it.
# course 7: List in Python
var = ["x","y","z"]
print (var[1])
Output of above Python syntax example:
In above syntax, we declared a list and printed in item from that list like its an array.