Skip to content

Instantly share code, notes, and snippets.

@vladthelittleone
Created February 7, 2018 12:50
Show Gist options
  • Select an option

  • Save vladthelittleone/ab80293a4b82cffedfa1747d074d577f to your computer and use it in GitHub Desktop.

Select an option

Save vladthelittleone/ab80293a4b82cffedfa1747d074d577f to your computer and use it in GitHub Desktop.
def get_amount():
amount_3 = order_3['amount'] * order_3['price']
amount_2 = order_2['amount'] if order_2['amount'] < amount_3 else amount_3
amount_2 = amount_2 * order_2['price']
return order_1['amount'] if order_1['amount'] < amount_2 else amount_2
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment