0
How to print hi or hello world in python?
i'm a beginner. help me please.
4 Answers
+ 1
print("text")
+ 1
import sys
sys.stdout.write("Hello, world!\n")
0
print('hello, world')
print("hello, world")
helloWorld = "hello, world"
print(helloWorld)
hw = ['hello,', 'world']
print(hw[0] ,hw[1])
and a LOT of other ways!