Replacing the default newline character
Solved Step By Step with Explanation – Print() Function Formatting
Question
4. print() does not automatically add a line break to the display. (explain)
Answer
Solved Step By Step with Explanation –Print() Function Formatting
For example:
```python
```
Hello
```python
print("Hello", end=" ")
Hello World
```


