Answers for "how to type hello world in python"

4

how to write your first python program

# The basics are messages such as Hello World which is displayed in the shell window.
# The line of code bellow is used to show strings or integers in the python terminal window.
print("Hello World")
Posted by: Guest on April-08-2020
3

how to print hello world in python

# For python 3
print("Hello World")
# for python 2
print "Hello World"
Posted by: Guest on November-03-2020

Python Answers by Framework

Browse Popular Code Answers by Language