# Python Hello World

A “Hello, World!” is a simple program that outputs `Hello, World!` on the screen. The code for it in the latest version of Python is as follows:

```
msg = "Hello World"
print(msg)
```

## How “Hello, World” Works in Java

```
msg = "Hello World"
``` 

The above code assigns the value "Hello World" to the variable msg.

``` 
print(msg)
``` 
This code outputs the value of the variable msg, to the console.

Python is a language which has a programs which are lot shorter than Java or C++ programs with the same logic. This is why it is so popular. Python is also faster than Java.
