Ask Question
10 May, 00:05

The Springfork Amateur Golf Club has a tournament every weekend. The club president

has asked you to write two programs:

1. A program that will read each player's name and golf score as keyboard input, and then

save these as records in a file named golf. txt. (Each record will have a field for the

player's name and a field for the player's score.)

2. A program that reads the records from the golf. txt file and displays them.

+1
Answers (1)
  1. 10 May, 02:24
    0
    The Python code is given below for each question.

    Explanation:

    1:

    if __name__ = = '__main__':

    f = open ('golf. txt', 'w')

    n = int (input ("Enter number of players:"))

    for i in range (n):

    name = input ("Enter name of player number " + str (i + 1) + ":")

    score = int (input ("Enter score of player number " + str (i + 1) + ":"))

    f. write (name + "/n" + str (score) + "/n")

    f. close ()

    2:

    try:

    with open ('golf. txt') as r:

    lines = r. readlines ()

    for i in range (0, len (lines), 2):

    print ("Name:", lines[i]. strip ())

    print ("Score:", lines[i+1]. strip ())

    print ()

    except FileNotFoundError:

    print ("golf. txt is not found!")
Know the Answer?
Not Sure About the Answer?
Get an answer to your question ✅ “The Springfork Amateur Golf Club has a tournament every weekend. The club president has asked you to write two programs: 1. A program that ...” in 📙 Computers & Technology if there is no answer or all answers are wrong, use a search bar and try to find the answer among similar questions.
Search for Other Answers