Write a function discount(price, is_member) that takes a pri…
Write a function discount(price, is_member) that takes a price and a boolean is_member. If the person is a member, return the price with a 10% discount; otherwise, return the full price.
Read Details