Python Print Without Newline [SOLVED]

If you’re familiar with Python, you may have noticed that the built-in function print() doesn’t need an explicit n character at the end of each line. This means that the output from the following snippet of code print(‘freeCodeCamp Curriculum’) print(‘freeCodeCamp News’) print(‘freeCodeCamp YouTube Channel’) will be: freeCodeCamp Curriculum
Find the soul