Simple types / Numbers / Integer
Conversion from a string
Converting to a string
Arithmetic operations
Getting random values
Bitwise operations
Numeral system
Check overflow
BigInteger
from
random
import
randint
rand =
randint
(
0
,
2
)
# rand
is
0, 1
or
2
print
(f
"
{rand = }
"
)