Redirecting you to https://pythontutor.com/composingprograms.html#code=def%20make_withdraw_account%28initial%29%3A%0A%20%20%20%20balance%20%3D%20%5Binitial%5D%0A%20%20%20%20%0A%20%20%20%20def%20withdraw%28amount%29%3A%0A%20%20%20%20%20%20%20%20if%20balance%5B0%5D%20-%20amount%20%3C%200%3A%0A%20%20%20%20%20%20%20%20%20%20%20%20return%20%27Sin%20fondos%27%0A%20%20%20%20%20%20%20%20balance%5B0%5D%20-%3D%20amount%0A%20%20%20%20%20%20%20%20return%20balance%5B0%5D%0A%20%20%20%20%0A%20%20%20%20return%20withdraw%0A%20%20%20%20%0Awithdraw%20%3D%20make_withdraw_account%28100%29%0Awithdraw%2825%29%0Awithdraw%2825%29%0Awithdraw%2875%29&cumulative=true&mode=edit&origin=composingprograms.js&py=3&rawInputLstJSON=%5B%5D