Содержание
- 2. Открытие и закрытие файлов При работе с файлами необходимо соблюдать некоторую последовательность операций: Открытие файла с
- 3. open(file, mode) C://somedir/somefile.txt somedir/somefile.txt r (Read). Файл открывается для чтения. Если файл не найден, то генерируется
- 4. myfile = open("hello.txt", "w") myfile.close() try: somefile = open("hello.txt", "w") try: somefile.write("hello world") except Exception as
- 5. with open(file, mode) as file_obj: инструкции with open("hello.txt", "w") as somefile: somefile.write("hello world")
- 6. Текстовые файлы with open("hello.txt", "w") as file: file.write("hello world") with open("hello.txt", "a") as file: file.write("\ngood bye,
- 7. with open("hello.txt", "a") as hello_file: print("Hello, world", file=hello_file)
- 8. Чтение файла readline(): считывает одну строку из файла read(): считывает все содержимое файла в одну строку
- 9. with open("hello.txt", "r") as file: str1 = file.readline() print(str1, end="") str2 = file.readline() print(str2) hello world
- 10. with open("hello.txt", "r") as file: line = file.readline() while line: print(line, end="") line = file.readline() with
- 12. Скачать презентацию