str = "hello"
print("hello" == "hello") # prints True
text1 = 'apple'
text2 = 'apple'
text1 == text2
#RETURNS true
# 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.')
number_of_seats = 30
numbre_of_guests = 25
if numbre_of_guests <= number_of_seats:
print("it's ok")
else:
print("it's not ok")
'GE' in VINIX
>>> False
'GOOGL' in VINIX
>>> True