The Numbers.txt file contains a list of integer numbers. Com…
The Numbers.txt file contains a list of integer numbers. Complete the code to print the sum of the numbers in the file.f = open(‘Numbers.txt’)lines = f.readlines()f.close()XXXprint(sum)
Read Details