Just divide it by 100:
print(r/100)
How do you make a random integer like 14562 become a float with 2 decimals like 145.62?
import random
r = random.randint(1,5000)
What would I print in here to achieve that goal?
print(?)