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