So whenever I run this code it outputs the values I need, but also a "None" value at the bottom Why is that and how do I get rid of it?
insert = input("Insert Coin: ")
insert = int(insert)
amount_due = 50 - insert
def check_coins():
if insert >= 0 and insert < 50:
print("Amount Due:", amount_due)
elif insert > 50:
print(insert - 50)
else:
print("Amount Due:", amount_due)
print(check_coins())