first do a happy face and a circule thats it
Answer:
Some of the application areas of computer are
1.banking,
2.education,
3.industries,
4.entertainments,
5.hospitals,
Answer:import functools
# open your file
file = open("integers.txt", 'r')
file = file.read()
# put numbers into a list
file = file.split()
# convert list into integers
file = list(map(int, file))
# use lambda function to get average.
print(functools.reduce(lambda x, y: x+y / len(file), file, 0))
Explanation: