From ad265d18341df8e4f655315de54d2efef7f583b8 Mon Sep 17 00:00:00 2001 From: UttamQA <89651218+UttamQA@users.noreply.github.com> Date: Sat, 26 Feb 2022 17:14:07 +0530 Subject: [PATCH] Fork dummy --- 100+ Python challenging programming exercises for Python 3.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/100+ Python challenging programming exercises for Python 3.md b/100+ Python challenging programming exercises for Python 3.md index c4ba62c4..fd1176a9 100644 --- a/100+ Python challenging programming exercises for Python 3.md +++ b/100+ Python challenging programming exercises for Python 3.md @@ -72,7 +72,7 @@ Level 1 Question: With a given integral number n, write a program to generate a dictionary that contains (i, i*i) such that is an integral number between 1 and n (both included). and then the program should print the dictionary. -Suppose the following input is supplied to the program: +Suppose the following input is supplied to the program, checking forking of code: 8 Then, the output should be: {1: 1, 2: 4, 3: 9, 4: 16, 5: 25, 6: 36, 7: 49, 8: 64}