Use BeautifulSoup on the Practice Page


Live websites change A LOT. Let's get the first version of our project working on a clone of Amazon's page before we move onto the real thing. Take a look at: 


https://appbrewery.github.io/instant_pot/


1.  Use BeautifulSoup to get hold of the price of the item as a floating point number and print it out. This is what you're after:


HINT: You might need to use the split() method: https://www.w3schools.com/python/ref_string_split.asp






SOLUTION 1