Perbedaan Antara Akhir dan Python Sep

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

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