Given a text file such as this one called \"sample.txt\": REAL: 45 FAKE: 20 REAL
ID: 663881 • Letter: G
Question
Given a text file such as this one called "sample.txt":
REAL: 45
FAKE: 20
REAL: -10
FAKE: 30
REAL: 5
FAKE: 40
REAL: 12
FAKE: 50
REAL: 1
FAKE: 60
REAL: -15
FAKE: 70
REAL: 0
FAKE: 80
REAL: 35
FAKE: 90
Can you please help me with the following steps:
1. Use a list comprehension to separate out the lines of the file that start with “REAL:” .
2. Add up the sum of the numbers marked as REAL, and print this out. For the file given above, the output would be:
>>>
The sum of the REAL numbers is 73 .
3. Do this using as few lines of code as possible. The best solution uses 1 line, with a fixed filename (you can assume the name, and don’t have to ask the user).
Explanation / Answer
1.
2.
3.
#Description: Using list comprehension and the tools.py modules,
#this program reads in a file of names and ages, and prints them out in a table
from tools import *
table_print(["Name", "Age"], [each.split() for each in open("people.txt", "r").read().split(" ")])
Related Questions
drjack9650@gmail.com
Navigate
Integrity-first tutoring: explanations and feedback only — we do not complete graded work. Learn more.