Hey what's up? We are a free website solely relying on advertisement revenue!
Please support us by disabling your adBlock for this site and good things will happen!
def wish_list(lisit,item,cost,bud):
if item in lisit:
if cost<=bud:
return "You should buy a "+item+"!"
else:
return "You should save up for a "+item+"!"
else:
return "You probably don't want to buy a "+item+"."