当前位置:首页 > Python教程 > python进阶

Python Hello World 实例

python hello world 实例

以下实例为学习 python 的第一个实例,即如何输出 "hello world!":

实例

# -*- coding: utf-8 -*-

# filename : helloworld.py
# author by : www.51frw.cn

# 该实例输出 hello world!
print('hello world!')

执行以上代码输出结果为:

hello world!

 


【说明】本文章由站长整理发布,文章内容不代表本站观点,如文中有侵权行为,请与本站客服联系(QQ:254677821)!