how to print a statement in new line in python code example
Example 1: print no new line python
print('*', end='')
print('*', end='')
print('*', end='')
# output:
# ***
Example 2: new line in python
''' simple'''
print()
''' complex'''
print('\n',end='')