cara mencetak hello world in python
# Don't forget to add a quotation mark
print("Hello World!")
Red Dragon
# Don't forget to add a quotation mark
print("Hello World!")
print('hello world!') #prints hello world!
hello = "Hello world!"
print(hello)
sentence = True
if sentence:
print("hello world")