Python Hello World

Python Program to print Hello World

Program or Solution

				
			
					
print("Hello World!")

			
				
			

Program Explanation

Python has very simple syntax.

You can start write your code directly, i.e., no main funtion in python.

Print() function prints the given object in screen or device.

Comments