Meaning of end=” in the statement print(“\t”,end=”)? [duplicate]

The default value of end is \n meaning that after the print statement it will print a new line. So simply stated end is what you want to be printed after the print statement has been executed

Eg: – print ("hello",end=" +") will print hello +

Leave a Comment