# Limit Floating Point To Two Decimal Places

We can limit floating points to two decimals in Python as -

```python
>>> "{:.2f}".format(3.145678912345)
'3.15'
```

***Source:*** [***StackOverFlow***](https://stackoverflow.com/a/6539677)
