From 5a7feb28c1a4ad9a775127e04247f501fa126256 Mon Sep 17 00:00:00 2001 From: Massimo Santini Date: Sat, 11 Jun 2016 18:27:27 +0200 Subject: [PATCH] Removed duplicate example List concatenation appeared twice. --- sheet.md | 1 - 1 file changed, 1 deletion(-) diff --git a/sheet.md b/sheet.md index cc604f1..1aea835 100644 --- a/sheet.md +++ b/sheet.md @@ -61,7 +61,6 @@ h = ['re'] * 5 # repeat a list ['re', 'bl'].index('re') # returns index of 're' 're' in ['re', 'bl'] # true if 're' in list sorted([3, 2, 1]) # returns sorted list -z = ['red'] + ['green', 'blue'] # list concatenation ``` ### Dictionaries