I can't import xml.dom.minidom in PyCharm. What could I Try?
问题 I'm trying to import xml.dom.minidom but pycharm doesn't find it, altough it finds xml.entree / xml.parser / xml.sax. The rest of the standart libraries work all fine. The xml file (beispiel.xml) shouldn't be the problem, because it hasn't "xml" in the name. from xml.dom import minidom document = minidom.parse("beispiel.xml") wanted_info = input("Which prduct do you want to see?") product_list = document.getElementsByTagName(wanted_info) for product in product_list: for value in product