You have missed quotes in the step definition. For your example
Given the current account balance is "zero"
The step definition should be
@given('the current account balance is "{arg}"')
def current_account_initial_balance(amount):
print(amount)