Skip to content

Instantly share code, notes, and snippets.

@mzsm
Created August 29, 2012 09:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mzsm/3508858 to your computer and use it in GitHub Desktop.
Save mzsm/3508858 to your computer and use it in GitHub Desktop.
プレゼント 歌詞カード
# -*- coding: utf-8 -*-
#プレゼント 歌詞カード
if __name__ == "__main__":
presents = [
[
"キリンがさかだちしたピアス",
"フラッグチェックのハンチング",
"ユニオンジャックのランニング",
"丸いレンズのサングラス",
"オレンジ色のハイヒール",
"白い真珠のネックレス",
"緑色した細い傘",
"シャガールみたいな青い夜"
],
[
"グレイス・ケリーの映画の券",
"ヴィヴィアン・リーのブロマイド",
"バディー・ホリーのドーナツ盤",
"ヘップバーンの写真集",
"お菓子のつまった赤い靴",
"テディーベアーのぬいぐるみ",
"アンデルセンの童話の本",
"夢にまで見た淡い夢"
],
[
"ヒステリックなイヤリング",
"ポートネックのしまのシャツ",
"道で売ってるカレッジリング",
"マーブル模様のボールペン",
"アメリカ生まれのピーコート",
"中国生まれの黒い靴",
"フランス生まれのセルロイド",
"あの日生まれた恋心",
],
[],
]
sabi = ["彼女がいたなんて", "最後のプレゼント"]
for _presents in presents:
for p in _presents:
print("あなたがわたしにくれたもの {0} ".format(p))
for s in sabi:
print("大好きだったけど{0}".format(s))
print("bye bye my sweet darlin'")
print("さよならしてあげるわ")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment