Как мне записать в массив отдельный файл? - PullRequest
1 голос
/ 10 октября 2019

Я пытаюсь сохранить дату в массив (log []) в отдельный файл ("file.txt"). Как мне это сделать?

Я сам открыл файл, но не знаю, как открыть log [] в этом файле и добавить к нему данные.

x = input("Please Enter Name: ")
  y = input("Please Enter Phone Number: ")
  z = input("Please Enter Room Number: ")
  with open("log.txt", "a") as f:
    with open("log[]", "a") as g:
      g.write("Name: " + x)
      g.write("Phone Number: " + y)
      g.write("Room Number: " + z)

when doing this, it opened up a new file called log[] and saved it into there, not the actual array in log.txt. Then log.txt displayed that the login crashed

1 Ответ

1 голос
/ 10 октября 2019

Вы можете решить вашу проблему с помощью этого скрипта Python.

x = input("Please Enter Name: ")
y = input("Please Enter Phone Number: ")
z = input("Please Enter Room Number: ")

# {} are the place holder of x, y and z
# \n means new line at the end of each write done in the file.
log = '[{}, {}, {}]\n'.format(x, y, z)

# footxt in the same dir as the python script.
file_handler = open('footxt.txt', 'a')
file_handler.writelines(log)
file_handler.close()

Вывод скрипта, когда скрипт запускается 2 раза, будет выглядеть так в файле foo.txt.

[name, 888888, 01]

[name2, 998878, 02]

Код для вывода файла foo.txt на экран.

file_handler = open('footxt.txt')

for line in file_handler.readlines():
    print (line)

file_handle.close()
...