You are viewing a single comment's thread. Return to all comments →
def bonAppetit(bill, k, b): # Write your code here actual=0 for i in bill: actual=actual+i actual-=bill[k] actual=actual//2 if b==actual: print("Bon Appetit") else: print(b-actual)
Seems like cookies are disabled on this browser, please enable them to open this website
Bill Division
You are viewing a single comment's thread. Return to all comments →