From 9babf905c5d0c3414ec5b54330bcdb7699a1690e Mon Sep 17 00:00:00 2001 From: Marcus Kazmierczak Date: Sat, 7 Apr 2018 15:26:32 -0700 Subject: [PATCH] Fix link to string format examples --- reference.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reference.py b/reference.py index 717cc9a..19f47fa 100644 --- a/reference.py +++ b/reference.py @@ -307,7 +307,7 @@ 'raining {arg1} and {arg2}'.format(arg1='cats', arg2='dogs') # named arguments # string formatting -# more examples: https://mkaz.tech/python-string-format.html +# more examples: https://mkaz.blog/code/python-string-format-cookbook/ 'pi is {:.2f}'.format(3.14159) # returns 'pi is 3.14' # normal strings versus raw strings