Answer:
True hope this helps you and everyone!
Answer:
Option A.
Explanation:
Only option A satisfies the definition of push statements. So it is only the correct option.
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:
I didn’t get the plus and it let me review answers without an ad so idk so like you really don’t need plus I wouldn’t get it