with open('steps.txt', 'r') as myfile:
for x in range(12):
total = 0
for y in range(days[x]):
steps = int(myfile.readline())
total += steps
average = total / days[x]
print(f"The average steps taken in the month of {month[x]} is {average:.2f}")