Open Function in Python | Python File Operations | Python tutorials for beginners

Опубликовано: 03 Май 2020
на канале: ViaDigitally
37
2

#OpenFunctionInPython
#PythonFileOperations
#PythonTutorials

open() function in python:
1. This function is used to open a file .
2. after opening to perform the
writing operation, or reading operation,
or modify the data, delete the data.
3. The syntax is:
filepointer=open('filename','mode')
here,
filepointer is a object of the file.
filename is a name of the file.
mode indicates the file opening modes
i.e the file is opened for which purpose
in python the file opening modes are:
'w'..... to open a file for writing purpose.
if the file already exists then, to remove
the old data and to store the new data.
otherwise to create a new file.
'r'.....to open a file for reading purpose.
'a'.....to open a file for appending purpose
'w+'.... to open a file for writing and reading puposese.
'r+'..... to open a file for reading and appending .
to append the new data at the begining of the file.

'a+'.....to open a file for reading and appending .
to append the new data at the end of the file.

'x'...... to open a file for exclusively for writing operation.
if the file already exists, then,
it returns FileExistsError.
otherwise to create a new file.
----------------------------------------------------------
Python tutorial for beginners| python programming language tutorial
Python basics | python tutorial for beginners | learn python programming from scratch
Python tutorial for beginners - learn python for machine learning and web development.
Python tutorial for beginners | python programming | learn python | great learning.
Python tutorial for beginners [full course] learn python for web development.


Смотрите видео Open Function in Python | Python File Operations | Python tutorials for beginners онлайн без регистрации, длительностью часов минут секунд в хорошем качестве. Это видео добавил пользователь ViaDigitally 03 Май 2020, не забудьте поделиться им ссылкой с друзьями и знакомыми, на нашем сайте его посмотрели 37 раз и оно понравилось 2 людям.