How would I be able to round numbers like these to two decimal places which are all stored in a variable which has been outputted by a web scraper:
4.7532 4.7294
Use the built-in function round(), example:
>>> round(4.7532,2) 4.75 >>> round(4.7294,2) 4.73