I am new to pyhotn programming I was trying to write a program for my practice but I failed to execute an empty line in my output. The code I wrote is :
def DoTheWork(worker):
print("Its an oder to you")
print("Please do the work" + " " + worker )
print("In one day")
DoTheWork('Kamrul')
DoTheWork('Noman')
And gives me the output :
Its an oder to you
Please do the work Kamrul
In one day
Its an oder to you
Please do the work Noman
In one day
I am getting no errors but I failed to execute an empty line .
Can anyone help me out.