Learn practical skills, build real-world projects, and advance your career
!pip install jovian --upgrade --quiet
jovian.commit()
[jovian] Attempting to save notebook..

DATA TYPES:

  1. INT
  2. FLOAT
a= 56
print(id(a))
print(type(a))
94137311794144 <class 'int'>

BASE CONVERSION :

  • Binary : 0OR 1,0b or 0b --> bin()
  • Octadecimal : 0to 7,0o or 0O --> oct()
  • Hexadecimal : 0 to 9 and a,b,c,d,e,f 0x or 0X --> hex()