I am a little bit confused about the from xxx import yyy
syntax python. Sometimes import is importing a python file (.py file), but sometimes it is importing a function (def abc) in a .py file. What's the difference between these two types of import?
Thanks!