Generation

generate functionWed, 21 Feb 2024

もし買い物の購入金額が1000円以上であればランダムに1〜5割引とした価格を表示し、そうでなければ購入金額をそのまま表示する

def discount(price): if price >= 1000: return price * (1 - 0.1) elif price >= 500: return price * (1 - 0.2) elif price >= 100: return price * (1 - 0.3) else: return price * (1 - 0.4) # Calculate the total price def total(price):

Questions about programming?Chat with your personal AI assistant