আপনি রাইট ফাংশন ব্যবহার করে ফাইলে লাইন লিখতে পারেন৷
৷উদাহরণস্বরূপ
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
বিকল্পভাবে, আপনি print() ফাংশন ব্যবহার করতে পারেন যা Python 2.6+
থেকে পাওয়া যায়from __future__ import print_function # Only needed for Python 2 print("hi there", file=f)
Python 3 এর জন্য আপনার আমদানির প্রয়োজন নেই, যেহেতু print() ফাংশনটি ডিফল্ট।