How To Create Our Own DataTypes in Python(with OOPs)
Prerequisites Crushed
First of all, everything in Python is an object.
>>Understanding Datatype in Python
let us understand very basic datatype in Python i.e., int.
num = 10
# Printing the type of integer variable num
print(type(num))
#------------...
yash-kathoke.hashnode.dev3 min read