# your code goes here
from os import path
import inspect


def myfunction():
   print(inspect.currentframe().f_code.co_name, path.basename(__file__))
   print(f"{inspect.currentframe().f_code.co_name} {path.basename(__file__)}")
   print("{} {}".format(inspect.currentframe().f_code.co_name, path.basename(__file__)))


myfunction()