आप राइट फंक्शन का उपयोग करके फाइल करने के लिए केवल लाइन लिख सकते हैं।
उदाहरण के लिए
f = open('myfile', 'w') f.write('hi there\n') # python will convert \n to os.linesep f.close() # you can omit in most cases as the destructor will call it
वैकल्पिक रूप से, आप प्रिंट () फ़ंक्शन का उपयोग कर सकते हैं जो कि Python 2.6+ के बाद से उपलब्ध है
from __future__ import print_function # Only needed for Python 2 print("hi there", file=f)
पायथन 3 के लिए आपको आयात की आवश्यकता नहीं है, क्योंकि प्रिंट () फ़ंक्शन डिफ़ॉल्ट है।