nowcoder-python/NP/NP1.py

13 lines
177 B
Python

#!/usr/bin/env python3
# @author 轩辕龙儿
# @date 2022/10/25
# @file NP1.py
def solution():
s = "Hello World!"
print(s)
if __name__ == "__main__":
solution()