def get_balance_string(amount): """Gets the formatted bank balance string for a given amount""" return 'Balance: {0}'.format(math.trunc(amount))