From b74dde514258032d975682e531ab4184916bc764 Mon Sep 17 00:00:00 2001 From: Ashwani Kumar Date: Tue, 31 Oct 2017 15:20:53 +0530 Subject: [PATCH] Update Day-8.py --- python/Day-8.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/Day-8.py b/python/Day-8.py index 6d01b2d..477dc4d 100644 --- a/python/Day-8.py +++ b/python/Day-8.py @@ -1,6 +1,6 @@ totalNums = int(input()) phoneBook={} -for i in range(0,totalNums): +for _ in range(0,totalNums): string = input() Input = string.split(' ') phoneBook[Input[0]]=Input[1]