row.append(int(_values[_rep]))
_all.append(row)
+ # ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# Print results
+ # ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
print()
print("Results for: epley, brzycki, and dos_remedios")
print()
+
+ # Print the n=1 average for all three calculations
+ _avg_1rm = round(sum(_all[0][1:]) / len(_all[0][1:]), 1)
+ print(f"1RM: {_avg_1rm}")
+ print()
+
_table = tabulate(_all, headers=["n", "epl", "brz", "rmds"])
print(_table)