Advertisement
Guest User

Untitled

a guest
Sep 16th, 2019
146
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. def template_mail(name,bill):
  2. template = '''{}様
  3. 今月の利用金額は{}円です。
  4. よろしくお願いいたします。
  5. '''
  6. temp = template.format(name,bill)
  7. print(temp)
  8.  
  9. template_mail("佐藤",1000)
  10. template_mail("鈴木",2000)
  11. template_mail("山田",3000)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement