Write a Python program to print the following string in a specific format
Sample String: Baa, baa, black sheep, Have you any wool? Yes sir, yes sir, Three bags full; One for the master, And one for the dame, And one for the little boy Who lives down the lane
Output :
print("Baa, baa, black sheep, \n\tHave you any wool? \n\t\tUp above Yes sir, yes sir, Three bags full; \n\t\tOne for the master, And one for the dame,. \nAnd one for the little boy, \n\tWho lives down the lane")
Result
