python-tutorials/tests/HelloWorld.py

10 lines
207 B
Python
Raw Normal View History

2021-03-05 15:34:06 -05:00
# 第一个 Python 程序 - Hello, World!
# Version: 0.1
# Author: YuCheng Hu
print('hello, world!')
print('你好', '世界')
print('hello', 'world', sep=', ', end='!')
print('goodbye, world', end='!\n')