From 9038e0c5053708c2b5fd81f7a65dd5fc8d44cf88 Mon Sep 17 00:00:00 2001 From: Jivthesh M R Date: Sat, 18 Jul 2020 11:20:00 -0700 Subject: [PATCH] updated loops --- Python/01. Introduction/005. Loops.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Python/01. Introduction/005. Loops.py b/Python/01. Introduction/005. Loops.py index 9892a5c..84a3383 100644 --- a/Python/01. Introduction/005. Loops.py +++ b/Python/01. Introduction/005. Loops.py @@ -2,5 +2,5 @@ # Score: 10 -for i in range(int(input())): +for i in range(n): print(i ** 2)