Defining and Calling Python Functions

def myFunction():
    print("Hello")
    print("World")
myFunction()

While Loops

a = 3
while a >= 1:
    a -= 1
    print("Hello")

ChatGPT Provided Questions:

Print Even Numbers