python リスト内表記とifを組み合わせる

prices = [100, 200, 150, 200, 100]

prices_with_tax = []

for price in prices:

if price != 200:

prices_with_tax.append(price * 1.1)

prices_with_tax = [price * 1.1 for price in prices if price != 200]

print(prices_with_tax)

投稿者: chosuke

趣味はゲームやアニメや漫画などです

コメントを残す

メールアドレスが公開されることはありません。 が付いている欄は必須項目です