We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c8dc522 commit eca8be3Copy full SHA for eca8be3
Notes/02_Working_with_data/03_Formatting.md
@@ -115,7 +115,7 @@ modeled after the C `printf()` as well.
115
*Note: This is the only formatting available on byte strings.*
116
117
```python
118
->>> b'%s has %n messages' % (b'Dave', 37)
+>>> b'%s has %d messages' % (b'Dave', 37)
119
b'Dave has 37 messages'
120
>>>
121
```
0 commit comments