python strings new line code example
Example 1: new line in python
''' simple'''
print()
''' complex'''
print('\n',end='')
Example 2: python new line
print("First Line \n" "Second Line")
''' simple'''
print()
''' complex'''
print('\n',end='')
print("First Line \n" "Second Line")