Вы можете решить вашу проблему с помощью этого скрипта 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()