halo dunia py
text = ("Hello World!")
print(text)
Dizzy Dugong
text = ("Hello World!")
print(text)
#To print hello world in python:
print("Hello World")
#python2
print 'hello'
#python3
print('hello')
# the normal way!
print("Hello, World!")
# Different way
import __hello__ # run the program
print('Hello World!')
sentence = True
if sentence:
print("hello world")