Your paragraph text

Start your Coding Journey on Qubrica

main.py
def create_future():
    print("Hello World!")
    mood = "Creative"
    return mood

# Run the script
create_future()
terminal
> python main.py
Hello World!
'Creative'

> _|
Python Programming