Python program to print "Hello World!"
Python program to print “Hello World!”
Python program to print “Hello World!”
#This python program prints "Hello World!" in the console. print("Hello World!")
Output:
Hello World!
Explanation:
The first line of the code is the comment line as it is starting with #. Hence this line will be excluded by the interpreter.
The second line is the command section of the program. ‘print’ is an inbuilt python library that displays the values…
View On WordPress











