Python casting
Variable में Data के type को किसी और data type में बदलने को casting या type casting कहते है और python में ये आसानी से किया जा सकता है निम्न का उपयोग करकर।
- int()
- float()
- 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
0 टिप्पणियाँ
If you have any doubt. Please let me know