From 8e54f2bbd86fffc25141f8913ea2bd09fdec7f30 Mon Sep 17 00:00:00 2001 From: Federico Ceratto Date: Mon, 21 Aug 2017 10:14:43 +0100 Subject: [PATCH] Updated Nim for Python Programmers (markdown) --- Nim-for-Python-Programmers.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Nim-for-Python-Programmers.md b/Nim-for-Python-Programmers.md index a84434d..a48c878 100644 --- a/Nim-for-Python-Programmers.md +++ b/Nim-for-Python-Programmers.md @@ -151,6 +151,8 @@ var a = "hello" echo a[0..1] # returns "he": ranges are inclusive! See the "Ranges" paragraph ``` +A [very detailed comparison](https://scripter.co/notes/string-functions-nim-vs-python/) + ### Python tuples Nim Tuples are close to Python nametuples, see [manual](http://nim-lang.org/docs/manual.html#types-tuples-and-object-types).