From 367a16748bca85902901eaf9604376b6aa5b23e9 Mon Sep 17 00:00:00 2001 From: avanish001 <57124675+avanish001@users.noreply.github.com> Date: Tue, 29 Oct 2019 10:44:11 +0530 Subject: [PATCH] Update file.py This will print n no. of times --- file.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/file.py b/file.py index ec7780c..eedf75b 100644 --- a/file.py +++ b/file.py @@ -1 +1,3 @@ -print('Hello, world!') +N = int(raw_input()) +for i in xrange(N): + print "hello world"