Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.python > #103115

Question on keyword arguments

From <grsmith@atlanticbb.net>
Newsgroups comp.lang.python
Subject Question on keyword arguments
Date 2016-02-18 09:00 -0500
Message-ID <mailman.2.1455804706.2289.python-list@python.org> (permalink)

Show all headers | View raw


Would this be the correct way to return
a list as a default result.

Also, would the list be the preferable result (to a python programmer) ?

def test(command, return_type='LIST'):
    """ Go to database and return data"""
    if return_type == 'LIST':
        result = ['ONE', 'TWO', 'THREE']
    else:
        result = r'0xfeONE\0exfeTWO\0xfeTHREE'
    return result

if __name__ == '__main__':
    print(test('cmd'))
    print(test('cmd', 'LIST'))
    print(test('cmd', None))
    print(test('cmd', 'string'))


thanks,
george

Back to comp.lang.python | Previous | Next | Find similar | Unroll thread


Thread

Question on keyword arguments <grsmith@atlanticbb.net> - 2016-02-18 09:00 -0500

csiph-web