THANKS FOR WATCHING
_________________________
THIS VEDIO IS CREATED BY SAYAN SENAPATI
---------------------------------------------------------------------------
2nd CHANNLE :
/ @nintendosg3975
Instagram :
https://instagram.com/sayan_senapati_...
Telegram :
https://t.me/Senapati_max
python playlist:
• Python-project's
----------------------------------------------------------------------------------------
FD
fd − This is the file descriptor for which a file object is to be returned. mode − This optional argument is a string indicating how the file is to be opened. The most commonly-used values of mode are 'r' for reading, 'w' for writing (truncating the file if it already exists), and 'a' for appending.
RT
The format is file_object = open(filename, mode) where file_object is the variable to put the file object, filename is a string with the filename, and mode is "rt" to read a file as text or "wt" to write a file as text (and a few others we will skip here).
❤️