def my_function():    print("This is my function., \n it will execute when called.")
my_function()
input("Press Enter to continue...")

please enter your name:name = input("Please enter your name: ") # type: ignore
print(f"Hello, {name}! Welcome to Python programming.")     

def another_function():
    print("This is another function., \n but it is not called yet., \n so it won't execute.")
another_function()
