πŸ‘‹ Hello World

Your First Program

Every programmer starts in the same place: printing the words Hello World. This simple program proves that: - Your code runs - The computer understands your instructions - You can send output to the screen It might seem basic, but it’s the first step into real programming.
In Python, we use the print() function to display text. Text must go inside quotation marks. For example:
print("Hello World")
If everything is written correctly, the words Hello World will appear in the output.
Assignment:

Write a Python program that prints: Hello World Make sure: - You use the print() function - The words are inside quotation marks - There are no spelling mistakes
Write your first program