Suppress Carriage Return in Python Print Statement in Visual Studio Code on Mac - DevPops-Inc/python GitHub Wiki
• The following solution is for if you would like to suppress a carriage return in your print statement.
•
• Open your Python script in Visual Studio Code and find the print statement you wish to suppress the carriage return in.
•
• Type , end=””
in the print statement.
•
• Press the Run button.
•
• The statement will print in the terminal and the carriage return will be suppressed this time.
•