Python numbers
Python तीन तरह के numbers सपोर्ट करता है।
- int
- float
- complex
Example
a = 100 # int
b = 21.8 # float
c = 12j # complex number
अगर आप type जानना चाहते है तो type() function का उपयोग कर सकते है।
a = 100 # int
b = 21.8 # float
c = 12j # complex number
print(type(a))
print(type(b))
print(type(c))
0 टिप्पणियाँ
If you have any doubt. Please let me know