Skip to content

Commit 9bbb256

Browse files
authored
Update 03_Formatting.md
Line 92: changed {:10s} to {:>10s}
1 parent 92a8a73 commit 9bbb256

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Notes/02_Working_with_data/03_Formatting.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ keyword arguments.
8989
```python
9090
>>> '{name:>10s} {shares:10d} {price:10.2f}'.format(name='IBM', shares=100, price=91.1)
9191
' IBM 100 91.10'
92-
>>> '{:10s} {:10d} {:10.2f}'.format('IBM', 100, 91.1)
92+
>>> '{:>10s} {:10d} {:10.2f}'.format('IBM', 100, 91.1)
9393
' IBM 100 91.10'
9494
>>>
9595
```

0 commit comments

Comments
 (0)