print('\n') # display blank line
# enter product
product = input('Enter product for this batch: ')
# enter scent
fragrance = input('Enter fragrance for this batch: ')
# enter scent
batchCode = int(input('Enter batch code number: '))
# enter scent
batchSize = int(input('Enter number of products in this batch: '))
print('\n\n') # display blank line (2)
# prints out a label for every product box
for i in range (batchSize) :
print('Scents of Scotland 🏴')
print('Enjoy our hand-crafted ' + product)
print('Fill your home with the beautiful scent of ' + fragrance)
print('Quality Control: Batch#' + str(batchCode) + ' - Serial#' + str(i+1))
print('...........................................................\n')