Header Ads Widget

Responsive Advertisement

Ticker

6/recent/ticker-posts

Python numbers ( python class 6 in Hindi ) python programming language


 Python numbers

Python तीन तरह के numbers सपोर्ट करता है।

  1. int
  2. float
  3. 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))

Comments now


एक टिप्पणी भेजें

0 टिप्पणियाँ