Back-End Programming Exam  >  Back-End Programming Videos  >  Python Tutorial in Hindi  >  Python tutorial in Hindi 58 : String Formatting in Python 3

Python tutorial in Hindi 58 : String Formatting in Python 3 Video Lecture | Python Tutorial in Hindi - Back-End Programming

80 videos

FAQs on Python tutorial in Hindi 58 : String Formatting in Python 3 Video Lecture - Python Tutorial in Hindi - Back-End Programming

1. क्या string formatting क्या है और इसे Python में कैसे किया जाता है?
Ans. String formatting एक तरीका है जिसका उपयोग Python में विभिन्न डेटा टाइप को एक string में शामिल करने के लिए किया जाता है। यह प्रोग्रामर को आसानी से पठनीय और सुंदर कोड लिखने की अनुमति देता है। string formatting करने के लिए Python में दो तरीके होते हैं - "Old Style" formatting ("%") और "New Style" formatting (f-strings या str.format())।
2. क्या Old Style string formatting का उपयोग करके एक string को कैसे फॉर्मेट किया जा सकता है?
Ans. Old Style string formatting का उपयोग करके एक string को फॉर्मेट करने के लिए हम "%s" (string), "%d" (integer), "%f" (float) आदि का उपयोग करते हैं। इसके उदाहरण के लिए, यदि हमें दो integers को एक string में फॉर्मेट करना हो, तो हम निम्नलिखित कोड का उपयोग कर सकते हैं: ```python x = 10 y = 20 formatted_string = "The values are %d and %d" % (x, y) print(formatted_string) ``` यह कोड निम्नलिखित आउटपुट देगा: ``` The values are 10 and 20 ```
3. क्या New Style string formatting का उपयोग करके एक string को कैसे फॉर्मेट किया जा सकता है?
Ans. New Style string formatting का उपयोग करके एक string को फॉर्मेट करने के लिए हम "f-strings" या "str.format()" का उपयोग करते हैं। इसके उदाहरण के लिए, यदि हमें दो integers को एक string में फॉर्मेट करना हो, तो हम निम्नलिखित कोड का उपयोग कर सकते हैं: ```python x = 10 y = 20 formatted_string = f"The values are {x} and {y}" print(formatted_string) ``` यह कोड निम्नलिखित आउटपुट देगा: ``` The values are 10 and 20 ```
4. String formatting के लिए "f-strings" और "str.format()" में क्या अंतर है?
Ans. "f-strings" और "str.format()" दोनों में string formatting के लिए उपयोग होते हैं, लेकिन इनमें कुछ अंतर हैं। "f-strings" नवीनतम Python वर्शन में जोड़े गए हैं (Python 3.6+) और इसमें फॉर्मेट करने के लिए सरल और पठनीय भाषा का उपयोग किया जाता है। यह कोड को और पठनीय बनाता है। वहीं, "str.format()" एक पुरानी तकनीक है जिसे पहले से ही Python में उपयोग किया जा रहा है। इसमें आप कंप्लेक्स फॉर्मेटिंग को नियंत्रित करने के लिए और अधिक विकल्पों का उपयोग कर सकते हैं।
5. String formatting का उपयोग करने के लाभ क्या हैं?
Ans. String formatting के उपयोग से प्रोग्रामरों को निम्नलिखित लाभ होते हैं: - कोड को सुंदर, पठनीय और समझने में आसान बनाने के लिए फॉर्मेटिंग बनाने में मदद मिलती है। - विभिन्न डेटा टाइप को एक string में शामिल करने की सुविधा देता है। - यह कंप्लेक्स फॉर्मेटिंग को नियंत्रित करने और अधिक विकल्पों का उपयोग करने की अनुमति देता है। - यह कोड की पठनीयता बढ़ाता है और त्रुटियों की संख्या को कम करता है।
Explore Courses for Back-End Programming exam
Signup for Free!
Signup to see your scores go up within 7 days! Learn & Practice with 1000+ FREE Notes, Videos & Tests.
10M+ students study on EduRev
Related Searches

Python tutorial in Hindi 58 : String Formatting in Python 3 Video Lecture | Python Tutorial in Hindi - Back-End Programming

,

study material

,

video lectures

,

mock tests for examination

,

Semester Notes

,

Summary

,

Exam

,

Objective type Questions

,

Free

,

Python tutorial in Hindi 58 : String Formatting in Python 3 Video Lecture | Python Tutorial in Hindi - Back-End Programming

,

Important questions

,

shortcuts and tricks

,

ppt

,

past year papers

,

Extra Questions

,

MCQs

,

practice quizzes

,

Sample Paper

,

pdf

,

Python tutorial in Hindi 58 : String Formatting in Python 3 Video Lecture | Python Tutorial in Hindi - Back-End Programming

,

Viva Questions

,

Previous Year Questions with Solutions

;