From 57fb82428b56ee8fa5e18a343b9cdf9bd8942690 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Wiktor=20=C5=BBurawik?= Date: Tue, 5 Sep 2017 12:27:29 +0200 Subject: [PATCH] Fix typo in the "For what?" example --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 29255fb..278ba48 100755 --- a/README.md +++ b/README.md @@ -1495,7 +1495,7 @@ for i, some_dict[i] in enumerate(some_string): **Outuput:** ```py >>> some_dict # An indexed dict is created. -{0: 'w', 1: 'f', 2: 'f'} +{0: 'w', 1: 't', 2: 'f'} ``` #### 💡 Explanation: