NP2 多行输出

This commit is contained in:
轩辕龙儿 2022-10-25 13:14:10 +08:00
parent 388201792d
commit e83bc837ee

9
NP/NP2.py Normal file
View File

@ -0,0 +1,9 @@
#!/usr/bin/env python3
# @author 轩辕龙儿
# @date 2022/10/25
# @file NP2.py
s1 = "Hello World!"
s2 = "Hello Nowcoder!"
print(s1)
print(s2)