Computer Science, asked by gokulumenon009, 9 months ago

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 naseer138196
2

Answer:

happiness

Explanation:

Find sets of 3 numbers that add up to make 10,

find 3 different answers. good

Answered by madhaodange8
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