I want to sort a list, wich I do with the .sort or sorted command. Afterwards i want to change the Numbers into words so it makes more sense to read.
My Problem:
Calculation1 = 0+1 #because i need to cacluate something first
calculation2 = 1+1
list1 = [1, 2]
list1.sort()
output: 2, 1
but I want to change 2, 1 so it says FirstInvestment, SecondInvestment
thx for the help and constructive criticism