python-tutorials/tests/HelloWorld.py
2021-03-05 15:34:06 -05:00

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')