import random
wine = ["ボ", "ジョ", "レ", "ヌ", "ボ"]
random.shuffle(wine) #これのせいで無駄に時間がかかった。
print("".join([wine[i] if i < len(wine)-3 else wine[i] +"ー" for i in range(len(wine))]))
誰かもっと短くしてください。
#元ネタ
ヌジョレーボーボー
Go to list of users who liked
More than 5 years have passed since last update.
import random
wine = ["ボ", "ジョ", "レ", "ヌ", "ボ"]
random.shuffle(wine) #これのせいで無駄に時間がかかった。
print("".join([wine[i] if i < len(wine)-3 else wine[i] +"ー" for i in range(len(wine))]))
誰かもっと短くしてください。
#元ネタ
ヌジョレーボーボー
Register as a new user and use Qiita more conveniently
Go to list of users who liked