Create a function that converts a word to a bitstring and then to a boolean list based on the following criteria:
1 and even positions will be represented as 0.1 for True and 0 for False.to_boolean_list("deep") ➞ [False, True, True, False]
# deep converts to 0110
# d is the 4th alphabet - 0
# e is the 5th alphabet - 1
# e is the 5th alphabet - 1
# p is the 16th alphabet - 0
to_boolean_list("loves") ➞ [False, True, False, True, True]
to_boolean_list("tesh") ➞ [False, True, True, False]
A is at position 1 and Z at 26.