Please enable JavaScript.
Coggle requires JavaScript to display documents.
Components in Python - Coggle Diagram
Components in Python
Operators
Logical Operators
Unary
not
Binary
and
short-circuited
or
Relational Operators
==
!=
<=
is
<
is not
Compound Conditions
Return
True
non-zero value
False
0
Empty sets,lists...
Empty strings
None
Conclusion
Indentation
If statement
Operators
Logical Operators
Relational Operators
Compound Conditions
Loops
For
split
range
While
Statements
Break
Continue
loops
for loops
Iteration
List
Split
split()
split(delimeter)
String
Characters
Range
range(x)
range(x,y)
range(x,y,z)
Usage
while loops
Structure
Evaluation
Indentation
Execution
Completion
Loop Statements
break
continue
Indentation
goals
delimit code blocks
1
risks
syntax error
unexpected behavior
if statement
syntaxe
if condition :
elif condition :
else :
what ?
fundamental decision making control structure