Hi,
I understand that Shaorong would like to keep the points/dollar distinction, so globally setting USE_POINTS = False might not be the best solution.
However, you can do the conversion locally via
dollar_payoff = float(participant.payoff / 10)
If you want exactly two decimal places in combination with a decimal point, then you can use
dollar_payoff = format(float(participant.payoff / 10), '.2f'))
Finally, if you would like a decimal comma instead of a decimal point, you can use
dollar_payoff = format(float(participant.payoff / 10), '.2f')).replace(".", ",")
Best,
Holger