The DEL supports multiple parameters, can redis-py also support this? I expect it could be done as follows: ``` def delete(self, *args): """ >>> r = Redis(db=9) >>> r.delete('dsjhfksjdhfkdsjfh') 0 >>> r.set('a', 'a') 'OK' >>> r.delete('a') 1 >>> r.exists('a') 0 >>> r.delete('a') 0 >>> """ return self.send_command('DEL %s\r\n' % " ".join(args)) ``` Thank you!