运维网's Archiver
论坛
›
Python
› Python程序--hello world
sweli
发表于 2018-8-16 08:33:59
Python程序--hello world
第一个程序从“你好,世界!”开始
Hello world
2.7版本
>>> print "hello,world!"
hello, world!
3.5版本
>>> print("hello,world!")
hello, world!
页:
[1]
查看完整版本:
Python程序--hello world