10 lines
207 B
Python
10 lines
207 B
Python
|
# 第一个 Python 程序 - Hello, World!
|
||
|
# Version: 0.1
|
||
|
# Author: YuCheng Hu
|
||
|
|
||
|
|
||
|
print('hello, world!')
|
||
|
print('你好', '世界')
|
||
|
print('hello', 'world', sep=', ', end='!')
|
||
|
print('goodbye, world', end='!\n')
|