# Comparison is done through "lexicographic" order of letters
# Change the variable 'word' then run and see the results
# Remember a capital letter comes before a simple letter
word = 'banana'
if word == 'banana':
print('All right, bananas.')
if word < 'banana':
print('Your word', word, 'comes before banana')
elif word > 'banana':
print('Your word', word, 'comes after banana')
else:
print('All right, bananas.')