Python programming help I need help of question 1 to read a file from persons.txt Write a program that takes a person’s details (name, age and a city), and writes to a file (persons.txt) using a loop repeatedly. You should write three person’s to the file. The program terminates on entering any key by the user, except on (Y or y) key. Sample output of the first run of the program is shown below: Enter name: John Enter age: 20 Enter city: Sydney Data saved: John 20 Sydney Press (Y or y) to add another person, or any key to exit Question 1) Write a program that read a file (persons.txt) from previous question given on the top of this question, and shows all the records/lines from the file as a nicely formatted report with a header as shown: Name Age City +---------------------+--------------------+--------------
Python
I need help of question 1 to read a file from persons.txt
Write a program that takes a person’s details (name, age and a city), and writes to a
file (persons.txt) using a loop repeatedly. You should write three person’s to the file.
The program terminates on entering any key by the user, except on (Y or y) key.
Sample output of the first run of the program is shown below:
Enter name: John
Enter age: 20
Enter city: Sydney
Data saved: John 20 Sydney
Press (Y or y) to add another person, or any key to exit
Question 1)
Write a program that read a file (persons.txt) from previous question given on the top of this question, and shows
all the records/lines from the file as a nicely formatted report with a header as shown:
Name Age City
+---------------------+--------------------+--------------
Step by step
Solved in 3 steps with 3 images