techmore.in

Python - Hello World

Here is a simple "Hello, World!" program in Python:

python
# This is a simple Python program to print "Hello, World!" print("Hello, World!")

When you run this code, it will display:

Hello, World!