From 9bbb256afa7ed6ff43733499446967780d257220 Mon Sep 17 00:00:00 2001 From: DrOculus90 <85500880+DrOculus90@users.noreply.github.com> Date: Mon, 7 Jun 2021 09:54:13 -0400 Subject: [PATCH] Update 03_Formatting.md Line 92: changed {:10s} to {:>10s} --- Notes/02_Working_with_data/03_Formatting.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Notes/02_Working_with_data/03_Formatting.md b/Notes/02_Working_with_data/03_Formatting.md index 94b6198fe..877a40627 100644 --- a/Notes/02_Working_with_data/03_Formatting.md +++ b/Notes/02_Working_with_data/03_Formatting.md @@ -89,7 +89,7 @@ keyword arguments. ```python >>> '{name:>10s} {shares:10d} {price:10.2f}'.format(name='IBM', shares=100, price=91.1) ' IBM 100 91.10' ->>> '{:10s} {:10d} {:10.2f}'.format('IBM', 100, 91.1) +>>> '{:>10s} {:10d} {:10.2f}'.format('IBM', 100, 91.1) ' IBM 100 91.10' >>> ```