I have a list (new in this, not know how to call it) and want to remove some characters from it but for some reason the function replace() pops a TypeError: 'NoneType' object is not callable
lists = <div class="d-map" itemprop="geo" itemscope="" itemtype="http://schema.org/GeoCoordinates"><meta content="29.028856" itemprop="latitude"/><meta content="-110.955923" itemprop="longitude"/><div id="map" style="height: 230px;"></div></div>
char_remove = ["<", ">","[", "]", "=", ":", "/" ]
for char in char_remove:
list = lists.replace(char, " ")