Please enable JavaScript.
Coggle requires JavaScript to display documents.
W1 python program - Coggle Diagram
W1 python program
object
type
type(x)
scalar
int
float
bool
NoneType (None)
conversion
int(3.5)
float(5)
print()
Expressions
object + operators = value
+, -,
, /
// int division
% resto della divisione
*
potenza
variables
a = 2
incrementing: a += 1 (a = a + 1)
branching program
if elsif else
conditional
comparison operator
==, !=, >, <, >=
logic operator
not, and, or
definitions
: evaluated
command
: executed
linear program