I have a boolean called programRepeated and I need to check if it is true or false with an if / else statement. Is there a way to do this?
if programRepeated = True:
print("Your balance is : $" , final_balance + cash_insert)
print("")
elif programRepeated = False:
print("Your balance is : $" , final_balance + cash_insert - 5)
print("")