<PLEASE USE THE FOLLOWING TEMPLATE TO HELP YOU CREATE A GREAT POST!>
<Below this line, add a link to the EXACT exercise that you are stuck at.>
I’m curiout as to what the ${:.2f}.’. does in this code. Can anyone explain this
<What do you expect to happen instead?>
```python#the cost of the server / hour
cost_per_hour = 0.51
#the cost of the server / day
cost_per_day = cost_per_hour * 24
new_cost = cost_per_day
#the cost of the server / month
cost_per_month = cost_per_day * 30
newnew_cost = cost_per_month
print(‘Cost to operate the server per day is {:.2f}.'.format(cost_per_day)) print('Cost to operate the server per month is {:.2f}.’.format(cost_per_month))
<do not remove the three backticks above>