题目描述
编写一个能够输出 Hello,World!
的程序。
提示:
- 使用英文标点符号;
Hello,World!
逗号后面没有空格。H
和W
为大写字母。
输入格式
无
输出格式
无
输入输出样例 #1
输入 #1
无
输出 #1
Hello,World!
方式-print()
代码
class Solution:
@staticmethod
def oi_input():
"""从标准输入读取数据"""
pass
@staticmethod
def oi_test():
"""提供测试数据"""
pass
@staticmethod
def solution():
print("Hello,World!")
oi_input = Solution.oi_input
oi_test = Solution.oi_test
solution = Solution.solution
if __name__ == '__main__':
solution()