From 3a1924665326d7da9fd9e0dc32999c02d6b9909b Mon Sep 17 00:00:00 2001 From: konqoro Date: Fri, 17 Feb 2017 23:25:07 +0200 Subject: [PATCH] This is explained better with an example in the "Ranges" section right above --- Nim-for-Python-Programmers.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/Nim-for-Python-Programmers.md b/Nim-for-Python-Programmers.md index 2283042..bc019f5 100644 --- a/Nim-for-Python-Programmers.md +++ b/Nim-for-Python-Programmers.md @@ -168,8 +168,6 @@ Use [Nim sequences](http://nim-lang.org/docs/tut1.html#advanced-types-sequences) Nim arrays and sequences can hold only items of the same type. -Also be aware that mylist[0..2] returns the first 3 elements (not 2), but cause a boundary error if there are less elements. - #### List Comprehensions ``` import future # required for the list comprehension syntactical sugar