#python
Read more stories on Hashnode
Articles with this tag
Creating Modules As our program grows we should split our code across multiple files. We refer to each file as a module. A module should contain...
Classes All the functions in a class should have at least one parameter and by default, we call it self. self is a reference to the current object #...
# ============================ # Lits # in lists every element can be of different type letters = ["a", "b", "c"] matrix = [[1,2], [3,4]] #...