-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhello_world.py
More file actions
25 lines (19 loc) · 864 Bytes
/
hello_world.py
File metadata and controls
25 lines (19 loc) · 864 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#!/usr/bin/env python3
# encoding: utf-8
# @author: hoojo
# @email: hoojo_@126.com
# @github: https://github.com/hooj0
# @create date: 2017-10-21 17:12:36
# @copyright by hoojo@2018
# @changelog Added python3 `helloworld -> hello world` example
# ===============================================================================
# 标题:python hello world 示例
# ===============================================================================
# 描述:入门示例
# -------------------------------------------------------------------------------
# -------------------------------------------------------------------------------
# 输出 hello world 信息
# -------------------------------------------------------------------------------
print("hello world") # hello world
print('hello world') # hello world
print('hello world'); # hello world