How to remove printed spaces in Python?
N = input('What is your name? \n')
print()
print('My name is', N, '.')
print('\n Hi,', N, "!")
Been experimentin' a bit in Python... How do I get rid of the printed spaces before the "." and the "!" in the printed outputs?
Thanks.