YchKhan commited on
Commit
2ed5320
·
verified ·
1 Parent(s): 1e4f033

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -0
app.py CHANGED
@@ -9,6 +9,8 @@ def list_attributes_and_values():
9
 
10
  def append_text_to_file(text):
11
  file_path = 'text_file.txt'
 
 
12
  with open(file_path, 'a') as file:
13
  file.write(text + '\n')
14
  with open(file_path, 'r') as file:
 
9
 
10
  def append_text_to_file(text):
11
  file_path = 'text_file.txt'
12
+ zip_file_path = 'text_file.zip'
13
+
14
  with open(file_path, 'a') as file:
15
  file.write(text + '\n')
16
  with open(file_path, 'r') as file: