Write a python program to search the name and address of persons
having age more than 30 in the data list of persons.
Answers
Answered by
2
Answer:
happiness
Explanation:
Find sets of 3 numbers that add up to make 10,
find 3 different answers. good
Answered by
2
Answer:
f = open (" datalist .dat")
rec = print (" Name. Address")
while rec:
rec= f.readline().split()
age = int(rec[2])
if age>30:
print (rec[0] , rec[1])
f.close( )
Explanation:
given above
Similar questions