Hello world in python | How to print a hello world in python
Python is a simple language and has a simple syntax. So, to print hello world! in python then we use print() syntax and we write hello word in strings form because it is strings.
Program
print("Hello World!")
Output
Hello World!