hwo to add new line in python code example
Example 1: python new line
print("First Line \n" "Second Line")
Example 2: how to show output in a different line in python
>>> print(f"Hello\nWorld!")
print("First Line \n" "Second Line")
>>> print(f"Hello\nWorld!")