Różnica między końcem a Pythonem

a = 2
b = 'monday'
print(a, b, sep='-')
print(a, b, end='-')

'''
OUTPUT:
2-monday
2 monday-
'''
BreadCode