From 7d0290ff02eb5b3106576a5e8f71e0222efe021b Mon Sep 17 00:00:00 2001 From: mayank185T9 <43036566+mayank185T9@users.noreply.github.com> Date: Wed, 3 Oct 2018 19:25:51 +0530 Subject: [PATCH 1/3] multiples of 9 --- outcomes/rahulkumaran/mayankgitt.py | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 outcomes/rahulkumaran/mayankgitt.py diff --git a/outcomes/rahulkumaran/mayankgitt.py b/outcomes/rahulkumaran/mayankgitt.py new file mode 100644 index 0000000..cb4dd3e --- /dev/null +++ b/outcomes/rahulkumaran/mayankgitt.py @@ -0,0 +1,11 @@ +#!/usr/bin/env python3 +# -*- coding: utf-8 -*- +""" +Created on Wed Oct 3 19:08:34 2018 + +@author: mayank +""" + +i=0 +for i in (1,2,3,4,5,6,7,8,9,10): + print (i*9) From 2562788667d9b43adae296884f6203d1ca2d3d41 Mon Sep 17 00:00:00 2001 From: mayank185T9 <43036566+mayank185T9@users.noreply.github.com> Date: Wed, 3 Oct 2018 19:38:59 +0530 Subject: [PATCH 2/3] updated version of #25 --- outcomes/rahulkumaran/mayankgitt.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/outcomes/rahulkumaran/mayankgitt.py b/outcomes/rahulkumaran/mayankgitt.py index cb4dd3e..e92e175 100644 --- a/outcomes/rahulkumaran/mayankgitt.py +++ b/outcomes/rahulkumaran/mayankgitt.py @@ -7,5 +7,5 @@ """ i=0 -for i in (1,2,3,4,5,6,7,8,9,10): +for i in range(1,10,1): print (i*9) From 726c56625009b7b17298a0943cff4d3d790b61cc Mon Sep 17 00:00:00 2001 From: mayank185T9 <43036566+mayank185T9@users.noreply.github.com> Date: Wed, 3 Oct 2018 21:48:32 +0530 Subject: [PATCH 3/3] sorry didn't see 99 thre --- outcomes/rahulkumaran/mayankgitt.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/outcomes/rahulkumaran/mayankgitt.py b/outcomes/rahulkumaran/mayankgitt.py index e92e175..2aa0550 100644 --- a/outcomes/rahulkumaran/mayankgitt.py +++ b/outcomes/rahulkumaran/mayankgitt.py @@ -8,4 +8,4 @@ i=0 for i in range(1,10,1): - print (i*9) + print (i*99)