Trying to understand why the carriage return is adding a space before the line in the print statement like the following:
print(1, '\n', 2, '\n', 3)
returning
1
 2
 3
Trying to understand why the carriage return is adding a space before the line in the print statement like the following:
print(1, '\n', 2, '\n', 3)
returning
1
 2
 3
 
    
    