Please enable JavaScript.
Coggle requires JavaScript to display documents.
Python points - Coggle Diagram
Python points
Comparison Operators
== equal to
!= not equal to
greater than
< less than
= greater than or equal to
<= less than or equal to
Indentation in Python
Spaces at the beginning of a line
Shows block of code
Mandatory in Python
Replaces curly brackets { }
Break Statement
Used inside loops
Stops the loop immediately
for i in range():
if condition:
break
while condition:
if condition:
break
Logical Operators
and – both conditions true
or – any one condition true
not – reverses condition