| 1234567891011121314151617181920212223242526272829 | 
							- import os
 
- BASE_DIR = os.path.dirname(__file__)
 
- file_path = os.path.join(BASE_DIR, "еуыеюече.txt")
 
- os.makedirs(os.path.join(BASE_DIR, "dir1"), exist_ok=True)
 
- f = open(file_path, "w")
 
- # запись файла
 
- f = open(file_path, "w", encoding="utf-8")
 
- f.write("AAA! Список студентов 36 гр\n")
 
- f.write("ПОСЛЕДОВ Кирилл\n")
 
- f.write("РЯБЧЕНКО Иван")
 
- f.close()
 
- # чтение файла
 
- f = open(file_path, "r", encoding="utf-8")
 
- line = f.read()
 
- print(line)
 
- f.close()
 
- print("sucess")    
 
 
  |