read_csv has support for declaring the decimal and thousands separator. read_html is missing the 'decimal' parameter. it'd be useful and more consistent to accept it too. Example: ``` pd.read_html(html, thousands='.', decimal=',') ```