| | 174 | |
| | 175 | <h2>String Formatting Operations</h2> |
| | 176 | |
| | 177 | <p>When using |
| | 178 | <a href="http://docs.python.org/lib/typesseq-strings.html">string formatting operations</a> |
| | 179 | like <code>formatString % values</code> it is only allowed to use a |
| | 180 | non-tuple object for <code>values</code> if <code>formatString</code> |
| | 181 | requires a single argument. Otherwise, <code>values</code> must be a |
| | 182 | tuple with exactly the number of items specified by the format string, |
| | 183 | or a single mapping object (for example, a dictionary).</p> |