Header Ads Widget

Responsive Advertisement

Ticker

6/recent/ticker-posts

Python casting (python class 8 in Hindi ) learn python programming language

 


Python casting

Variable में Data के type को किसी और data type में बदलने को casting या type casting कहते है और python में ये आसानी से किया जा सकता है निम्न का उपयोग करकर।

  1. int()
  2. float()
  3. str()

1) int()

दिए हुए नंबर (चाहे वो whole number हो या floating number) को integer में convert करता है।

Example

a = int(23.4) #outputs 23
b = int('232') #outputs 232

2) float()

float() का उपयोग कर number को float में convert कर सकते है।

Example

a = float(23) #outputs 23.00
b = int('232.22') #outputs 232.22

3) str()

दिए हुए नंबर float values को string में convert करने के लिए।

s - str("22.12") #outputs 22.12
t = str("hello 1234") #outputs hello 1234

Comments now


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

0 टिप्पणियाँ