عملکرد کلیدی برای کار با فایل ها در پایتون این است
تابع open()
.
تابع open()
دو پارامتر دارد.
نام فایل و حالت.
چهار روش (حالت) مختلف برای باز کردن یک فایل وجود دارد:
"r"
- Read - Default value. Opens a
file for reading, error if the file does not exist
"a"
- Append - Opens a file for
appending, creates the file if it does not exist
"w"
- Write - Opens a file for writing,
creates the file if it does not exist
"x"
- Create - Creates the specified file, returns
an error if the file exists
علاوه بر این، میتوانید تعیین کنید که آیا فایل باید به صورت باینری یا متنی مدیریت شود
"t"
- Text - Default value. Text mode
"b"
- Binary - Binary mode (e.g.
images)