Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.python > #16991
| From | Terry Reedy <tjreedy@udel.edu> |
|---|---|
| Subject | Re: Verbose and flexible args and kwargs syntax |
| Date | 2011-12-11 18:26 -0500 |
| References | <4EE48AB3.7070807@gmail.com> |
| Newsgroups | comp.lang.python |
| Message-ID | <mailman.3519.1323646018.27778.python-list@python.org> (permalink) |
On 12/11/2011 5:49 AM, Eelco Hoogendoorn wrote: > Plus, asterikses are impossible to google for, so finding out what exactly > they do more or less forces you to write a forum post about it. There are other means of finding information than Google. Really. 1. A couple of years ago, I wrote a very complete list of symbol syntax uses in Python 3. You can get is at https://xploro.googlecode.com/files/PySymbols.html Unfortunately, searching for 'python syntax symbols' does not show this on the first few pages. 2. The python docs have an index. While the Symbols page does not have most of the entries in the above doc, it does have '* in function calls' and '** in function calls'. 3. The meaning of * and ** in function calls is explained, surprise, in the reference manual section (5.3.4 for Py3) on function calls, which is in the chapter on expressions. -- Terry Jan Reedy
Back to comp.lang.python | Previous | Next | Find similar | Unroll thread
Re: Verbose and flexible args and kwargs syntax Terry Reedy <tjreedy@udel.edu> - 2011-12-11 18:26 -0500
csiph-web