Compare commits

...

2 Commits

Author SHA1 Message Date
1bd51d3952 NP3 读入字符串 2022-10-25 13:14:47 +08:00
e83bc837ee NP2 多行输出 2022-10-25 13:14:10 +08:00
2 changed files with 15 additions and 0 deletions

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)

6
NP/NP3.py Normal file
View File

@ -0,0 +1,6 @@
#!/usr/bin/env python3
# @author 轩辕龙儿
# @date 2022/10/25
# @file NP3.py
s = input()
print(s)