I am trying to format the amount of hundreds using %d
amount = [10]
print "Hundreds %d"(amount[0])
I am then getting a TypeError saying 'str' is not callable. This is my first time using this formatting, so any help would be greatly appreciated. :D