Browsing Category
Design
6 posts
functions and recursions in python
Functions: Functions are blocks of code that contain a reusable set of statements. They are defined using the…
conditional expressions in python
Conditional expressions, also known as ternary expressions, are a shorthand way of writing if…else statements in Python. The…
python basics sets
In Python, a set is a collection of unique elements. Sets are distinguished from lists, tuples, and dictionaries…
python basics sets
Python is a high-level programming language that offers various data structures to store and manipulate different types of…
lists and tuples in python
Lists and tuples are two types of data structures in Python that are used to store collections of…