Please enable JavaScript.
Coggle requires JavaScript to display documents.
Python - Coggle Diagram
Python
Data Structures:
-
You can add, remove, or change items in a list.
-
Like lists, but immutable (you can't change, add, or remove items once it's created).
-
-
-
-
Keys are unique, and you use them to look up values.
-
-
Follows FIFO (First-In, First-Out): the first item added is the first one to be removed.
-
-
Follows LIFO (Last-In, First-Out): the last item added is the first one to be removed.
-
Loops:
Loops in Python allow you to repeat a block of code multiple times. There are two main types of loops: for loops and while loops.
Predefined Functions:
Predefined functions in Python are built-in functions that you can use without needing to define them yourself. These functions perform common tasks like manipulating data, performing calculations, or interacting with the system.
Data Types:
In Python, data types specify what kind of value an object or variable can hold.
Condition statements: Condition statements in Python are used to make decisions based on certain conditions or criteria. These statements let you run certain blocks of code only when specific conditions are true. The most common condition statements are if, elif, and else.
-
-
-