टेक्स्टव्रप मॉड्यूल टेक्स्टवापर क्लास प्रदान करता है जो रैपिंग या फिलिंग करता है। इसमें एक ही उद्देश्य के लिए सुविधा कार्य हैं।
लपेटें(पाठ)
एकल अनुच्छेद को पाठ (एक स्ट्रिंग) में लपेटता है ताकि प्रत्येक पंक्ति अधिकतम चौड़ाई वाले वर्णों तक लंबी हो। अंतिम नई पंक्तियों के बिना, आउटपुट लाइनों की सूची देता है।
भरें (पाठ)
एकल अनुच्छेद को पाठ में लपेटता है, और लपेटा हुआ अनुच्छेद युक्त एकल स्ट्रिंग देता है।
>>> sample_text = ''' The textwrap module provides some convenience functions, as well as TextWrapper class that does all the work. If you’re just wrapping or filling one or two text strings, the convenience functions should be good enough; otherwise, you should use an instance of TextWrapper for efficiency. ''' >>> import textwrap >>> for line in (textwrap.wrap(sample_text, width = 50)): print (line) The textwrap module provides some convenience functions, as well as TextWrapper class that does all the work. If you’re just wrapping or filling one or two text strings, the convenience functions should be good enough; otherwise, you should use an instance of TextWrapper for efficiency.
उदाहरण भरें
>>> textwrap.fill(sample_text, width = 50) ' The textwrap module provides some convenience\nfunctions, as well as TextWrapper class that\ndoes all the work. If you’re just wrapping or\nfilling one or two text strings, the\nconvenience functions should be good enough;\notherwise, you should use an instance of\nTextWrapper for efficiency.'