How to Print in Python?

Hello everyone. Can you please tell me how can I print in Python? I am new to the programming field. Just started programming yesterday. I don’t know where to get started. I tried this code. But it is not working.

print(Hello World)

You are missing the “Double Quotes”. Whenever you are trying to print a string, you should put it in double or single quotes like this.

print("Hello World")