Using functions, how would I print the lowest, highest, and average of my PAY list?
try:
text_file = open ("Pay.txt", "w")
text_file.writelines(Pay)
text_file.close()
except (IOError):
print 'Error opening/writing Pay.txt'
try:
text_file= open("Pay.txt","r")
PAY= text_file.readlines()
text_file.close()
PAY.sort()