This is for Python - COP 1000, I have to use def main. I have attached the program I need help with (2), along with the program one instructions and code that I have below. Thank you! program6_2.py This program reads the text file created in the program above and displays its data. Use f-strings to create a table of rows and columns with column headings as follows: PLAYER COLUMN: 10 characters wide and left-aligned. GOALS COLUMN: 6 characters wide and centered. ASSISTS COLUMN: 8 characters wide and centered. TOTAL COLUMN: 6 characters wide and centered. After printing the stats for each player, the program should report the name of the top scorer and his total points (goals + assists).program6_1.py Write a program that uses a while loop to store goals and assists for Lightning players in a text file. The program should prompt the user for player names, goals, and assists as shown below. Enter data for at least five players. You can make up the names and data. Each datum should be stored on its own line in the file. Sample Output def main(): i = 0 with open("test.txt", 'w') as f: f.writelines("{:<10s}{:<10s}{:<10s}\n".format("Name", "Goals", "Assist")) while i < 5: name = input("\nEnter Player Name: ") goals = int(input("Enter goals: ")) assist = int(input("Enter Assist: ")) f.writelines("{:<10s}{:<10d}{:<10d}\n".format(name, goals, assist)) i += 1 main() The larger attached image is for the first program, the second is what the second program should look like.

Computer Networking: A Top-Down Approach (7th Edition)
7th Edition
ISBN:9780133594140
Author:James Kurose, Keith Ross
Publisher:James Kurose, Keith Ross
Chapter1: Computer Networks And The Internet
Section: Chapter Questions
Problem R1RQ: What is the difference between a host and an end system? List several different types of end...
icon
Related questions
Question

This is for Python - COP 1000, I have to use def main. I have attached the program I need help with (2), along with the program one instructions and code that I have below. Thank you!

program6_2.py
This program reads the text file created in the program above and displays its data. Use f-strings to create a table of rows and columns with column headings as follows:

  • PLAYER COLUMN: 10 characters wide and left-aligned.
  • GOALS COLUMN: 6 characters wide and centered.
  • ASSISTS COLUMN: 8 characters wide and centered.
  • TOTAL COLUMN: 6 characters wide and centered.

After printing the stats for each player, the program should report the name of the top scorer and his total points (goals + assists).program6_1.py
Write a program that uses a while loop to store goals and assists for Lightning players in a text file. The program should prompt the user for player names, goals, and assists as shown below. Enter data for at least five players. You can make up the names and data. Each datum should be stored on its own line in the file.
Sample Output

def main():
i = 0
with open("test.txt", 'w') as f:
f.writelines("{:<10s}{:<10s}{:<10s}\n".format("Name", "Goals", "Assist"))
while i < 5:
name = input("\nEnter Player Name: ")
goals = int(input("Enter goals: "))
assist = int(input("Enter Assist: "))
f.writelines("{:<10s}{:<10d}{:<10d}\n".format(name, goals, assist))
i += 1

main()

The larger attached image is for the first program, the second is what the second program should look like.

Input player name or Enter to quit Stamkos
Enter goals scored by Stamkos 35
Enter assists scored by this player 38
Input player name or Enter to quit Maroon
Enter goals scored by Maroon 29
Enter assists scored by this player 33
Input player name or Enter to quit Point
Enter goals scored by Point 50
Enter assists scored by this player 55
Input player name or Enter to quit Kucherov
Enter goals scored by Kucherov 55
Enter assists scored by this player 65
Input player name or Enter to quit Killorn
Enter goals scored by Killorn 33
Enter assists scored by this player 40
Input player name or Enter to quit
Transcribed Image Text:Input player name or Enter to quit Stamkos Enter goals scored by Stamkos 35 Enter assists scored by this player 38 Input player name or Enter to quit Maroon Enter goals scored by Maroon 29 Enter assists scored by this player 33 Input player name or Enter to quit Point Enter goals scored by Point 50 Enter assists scored by this player 55 Input player name or Enter to quit Kucherov Enter goals scored by Kucherov 55 Enter assists scored by this player 65 Input player name or Enter to quit Killorn Enter goals scored by Killorn 33 Enter assists scored by this player 40 Input player name or Enter to quit
PLAYER
GOALS ASSISTS TOTAL
Stamkos
35
38
73
Maroon
29
33
62
Point
50
55
105
Kucherov
55
65
120
Killorn
33
40
73
Kucherov is top scorer with 120 points
Transcribed Image Text:PLAYER GOALS ASSISTS TOTAL Stamkos 35 38 73 Maroon 29 33 62 Point 50 55 105 Kucherov 55 65 120 Killorn 33 40 73 Kucherov is top scorer with 120 points
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 4 steps with 3 images

Blurred answer
Recommended textbooks for you
Computer Networking: A Top-Down Approach (7th Edi…
Computer Networking: A Top-Down Approach (7th Edi…
Computer Engineering
ISBN:
9780133594140
Author:
James Kurose, Keith Ross
Publisher:
PEARSON
Computer Organization and Design MIPS Edition, Fi…
Computer Organization and Design MIPS Edition, Fi…
Computer Engineering
ISBN:
9780124077263
Author:
David A. Patterson, John L. Hennessy
Publisher:
Elsevier Science
Network+ Guide to Networks (MindTap Course List)
Network+ Guide to Networks (MindTap Course List)
Computer Engineering
ISBN:
9781337569330
Author:
Jill West, Tamara Dean, Jean Andrews
Publisher:
Cengage Learning
Concepts of Database Management
Concepts of Database Management
Computer Engineering
ISBN:
9781337093422
Author:
Joy L. Starks, Philip J. Pratt, Mary Z. Last
Publisher:
Cengage Learning
Prelude to Programming
Prelude to Programming
Computer Engineering
ISBN:
9780133750423
Author:
VENIT, Stewart
Publisher:
Pearson Education
Sc Business Data Communications and Networking, T…
Sc Business Data Communications and Networking, T…
Computer Engineering
ISBN:
9781119368830
Author:
FITZGERALD
Publisher:
WILEY