Python Sample Program


This code is a simple Python script that uses the built-in print() function to output the string "Hello World...!" to the console. The print() function takes a string or other data as input and displays it on the screen. In this case, the string "Hello World...!" is passed as an argument to the print() function, which will display it on the screen when the script is run. This is a common example used to demonstrate the basic syntax of a programming language.

Source Code

print("Hello World...!")
To download raw file Click Here

Output

Hello World