How do we import a function from a file, say, 'New File.py' in python in a different file (both being in the same directory)? If it were, say, 'This_thing.py', then we could simply type
from This_thing.py import *fn_name*
What is the format of importing stuff from the file with the said name-type? TL;DR,
from New File.py import fn
doesn't work. What to do?