I want to extract the translation of a word in online dictionary. For example, the html code for 'car':
<ol class="sense_list level_1">
<li class="sense_list_item level_1" value="1"><span class="def">any vehicle on wheels</span></li>
How can I extract "any vehicle on wheels" in Python with beautifulsoup or any other modules?