0

How to print hi or hello world in python?

i'm a beginner. help me please.

27th Jul 2019, 3:43 PM
Ariful Abir
Ariful Abir - avatar
4 Réponses
+ 1
print("text")
27th Jul 2019, 3:45 PM
alvaro.pkg.tar.zst
alvaro.pkg.tar.zst - avatar
+ 1
import sys sys.stdout.write("Hello, world!\n")
27th Jul 2019, 4:14 PM
alvaro.pkg.tar.zst
alvaro.pkg.tar.zst - avatar
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!
27th Jul 2019, 4:07 PM
James
James - avatar