We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 92a8a73 commit 9bbb256Copy full SHA for 9bbb256
Notes/02_Working_with_data/03_Formatting.md
@@ -89,7 +89,7 @@ keyword arguments.
89
```python
90
>>> '{name:>10s} {shares:10d} {price:10.2f}'.format(name='IBM', shares=100, price=91.1)
91
' IBM 100 91.10'
92
->>> '{:10s} {:10d} {:10.2f}'.format('IBM', 100, 91.1)
+>>> '{:>10s} {:10d} {:10.2f}'.format('IBM', 100, 91.1)
93
94
>>>
95
```
0 commit comments