Please enable JavaScript.
Coggle requires JavaScript to display documents.
Python - Coggle Diagram
Python
Data Types
Text: str
Numeric: int, float, complex
Sequence: list, tuple, range
Mapping: dict
Set: set, frozenset
Boolean: bool
String
Strings
Strings are arrays
Looping through string
String length
Check string
String Slicing
Slice From the Start
Slice To the End
Negative Indexing
Modify String
Upper Case
Lower Case
Remove Whitespace
Replace String
Split String
Concatenate
Variables
Variable names
Pascal Case
Snake Case
Camel Case
Assign Multiple Values
Many Values to Multiple Variables
One Value to Multiple Variables
Unpack a collection
Global Variables
Outside Function
Overide Global Variable
Global Keyword