Python String Formatting
String
formatting in python :-
Hello Dosto आज हम सीखेंगे string
formatting क्या होता है ? और इसका Use क्यो किया जाता है?
हमने string tutorial में सीखा था एक string को दूसरी string से जोड़ने के लिए '+' symbol का use कर रहे थे |
आज
हम सीखेंगे string formatting बिना '+' symbol लगाये string
formatting की मदद से easily दो string जोड़ सकते
हैं|
आओ कुछ और जाने :-
String formatting में हम placeholder '{}' का use करते हैं| string formatting जो argument लेगा वो tuple की तरह लेगा | Tuple के बारे में हम आने वाले tutorial में पूरे विस्तार से जानेंगे|
Example:-
Method 1:-
name = 'vaishnavi'
age = 19
print('hello {} your age is {}' . format (name, age))
Method 2:-
name='vaishnavi'
age = 19
print (f' hello {name} your age is {age}')
अगर आपको इस tutorial में कहीं पर भी कुछ समझ नहीं आया हो इस से related doubt हो तो आप comments कर सकते हैं|
Python के handwriting notes और google translation का sources code हमने telegram पर Apna Tech Hindi चैनल पर डाल दिये है आप हमारा telegram पर जा कर देख सकते हैं|
😊हमारे
साथ बने रहने के लिए आपका धन्यवाद ! 😊
यह भी पढ़ें
7 comments
So interesting topic
ReplyDeletePython is great language
ReplyDeleteNice explain
ReplyDeleteWhat is tuple
ReplyDeleteTuple ka topic pura define krege aane bale lecture mai
DeleteMethod 2 me print(f'
ReplyDeleteKy h didi
method 2 mai print(f"") yaha f ek F string hai jo ki string foramting ke kaam ati hai
Delete