Program to Print Hello, World! in Python
To display text on our screen, we will use built-in function print()
. It will print back arguments provided in the function.
In this article we’ll how to write a program to displays “Hello, World!”. The string Hello, World!
often used to illustrate the syntax of the programming or scripting language.
Source Code
# Below expression will print Hello, World!
print('Hello, World!')
Output
Hello, World!
Hope you like this!
Keep helping and happy 😄 coding