From eae10559182e4d2a70773540992137e05b927ebd Mon Sep 17 00:00:00 2001 From: Reet <71899877+ReetRatri@users.noreply.github.com> Date: Fri, 2 Oct 2020 20:41:41 +0530 Subject: [PATCH] Update 001-tut.py using end="it will print horrizontally and add 2 lines in(line 4,5) --- absolute-beginners/001-tut.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/absolute-beginners/001-tut.py b/absolute-beginners/001-tut.py index d81eeb5..8f6b79a 100644 --- a/absolute-beginners/001-tut.py +++ b/absolute-beginners/001-tut.py @@ -1,6 +1,8 @@ # First tutorial # Date: 05-December-2018 # Comments, Escape Sequence and Print Statements. +# let's start learning Python and i know i will be the best coder ... +# A big thanks to harry bhai. # This is first comment example. print("Hello World !!!!") @@ -11,7 +13,7 @@ ''' # end is merging last print line. -print("This is first print.", end="") +print("This is first print.", end="") #by using end="it will print horrizontally" print("This is second print.") # end with space.