Lines Matching refs:positional
94 an arbitrary set of positional and keyword arguments.
98 A format string argument is now :ref:`positional-only
99 <positional-only_parameter>`.
141 positional argument in *args*; if it is a string, then it represents a
144 The *args* parameter is set to the list of positional arguments to
164 the format string (integers for positional arguments, and strings for
228 keyword. If it's a number, it refers to a positional argument, and if it's a keyword,
240 The positional argument specifiers can be omitted for :meth:`str.format`,
244 The positional argument specifiers can be omitted for :class:`Formatter`.
248 "First, thou shalt count to {0}" # References first positional argument
249 "Bring me a {}" # Implicitly references the first positional argument
252 "Weight in tons {0.weight}" # 'weight' attribute of first positional arg