What are .
and :
doing in a print statement?
For example:
print(f'The estimated revenue for a $350 film is around ${revenue_estimate:.10}.')
this returns :
The estimated revenue for a $350 film is around $600000000.0.
But without :
and .
the result is exactly the same!
I searched and found nothing...