This commit is contained in:
louiscklaw
2025-01-31 21:15:04 +08:00
parent 3337cc3d1e
commit acf9d862ff
324 changed files with 43162 additions and 0 deletions

11
max015/T04/test.py Normal file
View File

@@ -0,0 +1,11 @@
def genGreetingLetter(customer_name, title, your_name):
greeting_letter_template = '''
Dear {Title} {Customer_Name},
Merry Christmas and Happy New Year!
Best,
{Your_Name}
'''.strip().replace('{Customer_Name}', customer_name).replace('{Title}', title).replace('{Your_Name}', your_name)
return greeting_letter_template