From 25ab820bd0ade93ce25ba3e94b1872c49f909cb9 Mon Sep 17 00:00:00 2001 From: Julien Lengrand-Lambert Date: Mon, 29 Oct 2012 13:39:15 +0100 Subject: [PATCH] Typo in Python tips --- python.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python.md b/python.md index a8c5ea9..8ef6ca0 100644 --- a/python.md +++ b/python.md @@ -7,7 +7,7 @@ blah = 1 blah_name = [ k for k , v in locals (). iteritems () if v is blah ][ 0 ] ``` - WARNING : Not very clever however, as variables in Python may have more that one name ! Use with caution! + __**WARNING :** Not very clever however, as variables in Python may have more that one name ! Use with caution!__ ## Replace a part of a table [Numpy]: