When I run the following code, it prints the word 'None'. It should print the amount entered by the user. Why does it do this, and how do it fix it?
def amount(thing):
amnt = int(input('How many ' + thing + ' would you like?'))
bolts_amount = amount('bolts')
print(bolts_amount)