It is a simple program that prints Hello, World! on the standard output device (screen).
Python 2 and Python 3 are quite different.
This tutorial uses Python 3, because it more semantically correcare two major Python versions, Python 2 and Python 3.
1 | print ( "Hello, World!" ) |
When you run the program, the output will be like Hello, World!
In this program, we have used the built-in print() function to print Hello, World! string.
No comments:
Post a Comment