$ curl cheat.sh/
#  Does that do the job?

 playerCredit = 100
 print(format(playerCredit/100., ',.2f')) 
 playerCredit = 80
 print(format(playerCredit/100., ',.2f'))

#  If you want to add the £ sign the following should do in Python 3.x
#  (in 2.x you will need to encode the sign)

 print(''.join(['£', format(playerCredit/100., ',.2f')]))

#  [Dawid] [so/q/40174754] [cc by-sa 3.0]

$
Follow @igor_chubin cheat.sh