更新第一次实验第 4 题

This commit is contained in:
Luthics 2022-10-23 13:22:32 +08:00
parent 85de2d302a
commit 447be82c5b
2 changed files with 16 additions and 1 deletions

View File

@ -6,6 +6,11 @@
├── homework # 存放作业的代码
│ ├── 1 # 第一次作业的代码
│ ├── 2 # 第二次作业的代码
│ └──...
├── test # 存放考试和实验的代码
│ ├── 1 # 第一次实验的代码
│ ├── 2 # 第二次实验的代码
│ └──...
└──...
### 一些自学可以参考的资源

10
test/1/4.py Normal file
View File

@ -0,0 +1,10 @@
a = input()
b = input()
print('''
******************************
''' + a + '''
Happy Birthday to you.
Sincely yours ''' + b + '''
******************************
''')