怎样用python写出hello world 写出来之后,运行是什么样的

2024-12-02 14:19:42
推荐回答(5个)
回答1:

1、首先打开Python交互式环境,打开CMD或powershell输入“python”指令,即可看到出现“>>>”,即意味着进入Python交互式环境。

2、然后Python交互式环境中输入“print('Hello World')”,按下回车即可看到控制台打印出来的Hello World字符串,这就是最简单的Python程序。

3、 最后在Python交互式环境中输入“exit()”指令即可退出Python交互式环境。

回答2:

如果你直接写一句print 'hello world',(在python 3.0以后版本中为print('hello world'))
窗口会显示hello world之后一闪而过,为了防止这个问题你应该添加一个让窗口停顿一下再关闭的语句以看到输出结果,代码如下:
import os
print 'hello world'
os.system('pause')

-->在3.0以后的版本中,请把print 'hello world'改为print('hello world')
保存文件名为.py,如果python安装正确,双击运行你会看到窗口输出hello world。

回答3:

直接创建一个文件,后缀名改为.py。加一个print "hello world!", python3.X的print("Hello, world!")
,运行就是一个一闪而过的DOS窗体。

回答4:

打开idle--new window输入print "hello world!"
python 3.0以后版本中为print('hello world')
保存为.py格式,然后点运行或者f5,ok

回答5:

print 'hello world'
raw_input('press any key to continue')