Python, as an object-oriented language, is built on the concept of classes (which are a fundamental part of object-oriented programming and should be the backbone of any serious Python project).In this view, classes exist to abstract away problems specific to their domain; they’re not “data structures” and they don’t come with default behaviors. They are […]
Category: Python
What is a tuple in python?
In this post I will talk about tuples in python and how to create them, what are its advantages and disadvantages, and finally how to write a code that will create a tuple from a list of tuples.The concept of tuples is simple enough to grasp but it can be quite complex to describe in […]