Python is a programming language that reads like English. Think of Python as giving instructions to a very obedient but literal robot. The print() function is your first command to this robot - it makes text appear on the screen. Whatever you put inside the parentheses and quotes will be shown exactly as written.
# This is a comment - computer ignores it
print("Hello World") # This makes 'Hello World' appear
print("I'm learning Python!")
print(123) # You can print numbers too