Python program to Print Hello, World!
Built-in function print()
is used to display some string in standard output unit in python.
In this example, we display Hello, World!
using print()
function. Syntax for print()
is print('string')
. String is basically collection of characters.
Python Source Code: Program "Hello, World!"
print('Hello, World!')
Output
Hello, World!