Typo in Python tips

This commit is contained in:
2012-10-29 13:39:15 +01:00
parent 17f3536471
commit 25ab820bd0

View File

@@ -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]: