>>> from customer import customer >>> customer (1000) 'reliable' >>> customer (234765) 'reliable' >>> customer (347) 'precarious' >>> customer (1) 'precarious' >>> customer (0) 'short on' >>> customer (-800) 'short on' >>> customer (-1000) 'defaulting' >>> customer (-4300) 'defaulting'