>>> hex(100)
'0x64'
>>> oct(100)
'0o144'
>>> bin(10)
'0b1010
'
>>> pow(10,5)
100000
>>> max(10,12,33,222,33,22)
222
>>> int(1245.333)
1245
>>> abs(-122222222)
122222222
>>> chr(65)
'A'
>>> max=[10,12,33,222,33,22]
>>> tuple(max)
(10, 12, 33, 222, 33, 22)#Functions
#__ALL_IN_ONE_ICT 🇱🇰