Respuesta :
Most possible reason:-
- in first one the programmer used end='' function while printing the statement where as in second one he didn't
Use of end space :-
- It forcibly stops the print statement to create new line inorder to print next statement
Ex::
- print(2,end=" ")
- print(3)
Output=
- 2 3