Basic Concepts Flashcards
Basic Concepts
1
Q
Numeric Operators definition
(**, *, %, //, +, -)
A
** - power (2**3 = 8)
/ - divisor ( 5/2 = 2)
% - modulus (5%2 = 1)
// - floor division, returns an integer rounded down
2
Q
String operators definition
*, +
A
- multiplies the string e.g. ‘do’ * 2 = dodo
+ - adds string, e.g ‘add’ + ‘er’ = adder
3
Q
assignment and shortcut operators
=, -=, +=, *=, /=, %=
A
a += b => a + b =