How to import module when module name has a ‘-‘ dash or hyphen in it? I want to import foo-bar.py. This works: foobar = __import__("foo-bar") This does not: from "foo-bar" import * My question: Is there any way that I can use the above... May 18, 2022 0 Comments