-
Notifications
You must be signed in to change notification settings - Fork 0
/
Task4.py
39 lines (32 loc) · 1014 Bytes
/
Task4.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
"""
Read file into texts and calls.
It's ok if you don't understand how to read files.
"""
import csv
with open('texts.csv', 'r') as f:
reader = csv.reader(f)
texts = list(reader)
with open('calls.csv', 'r') as f:
reader = csv.reader(f)
calls = list(reader)
"""
TASK 4:
The telephone company want to identify numbers that might be doing
telephone marketing. Create a set of possible telemarketers:
these are numbers that make outgoing calls but never send texts,
receive texts or receive incoming calls.
Print a message:
"These numbers could be telemarketers: "
<list of numbers>
The list of numbers should be print out one per line in lexicographic order with no duplicates.
"""
set_telemarkets = {call[0] for call in calls}
for call in calls:
if call[1] in set_telemarkets:
set_telemarkets.remove(call[1])
for text in texts:
if text[0] in set_telemarkets:
set_telemarkets.remove(text[0])
if text[1] in set_telemarkets:
set_telemarkets.remove(text[1])
print(list(set_telemarkets))