# import cool_stuff # access cool with cool_stuff.cool() # import cool_stuff as cs # access cool with cs.cool() from cool_stuff import cool # access cool with just cool() print("I am running cool_user.py") # I want to use the functions in cool_stuff cool()