Instructions: 
Given the following, decipher the code to discover the secret word!
Quote this later in the application process

#!/usr/bin/python def discover_char(my_char, char_num): my_code = ord(my_char) if char_num == 0: my_code += int('1000', 2) elif char_num == 1: my_code += ( int('0111', 2) * -1 ) elif char_num == 2: my_code += ( int('0101', 2) * -1 ) elif char_num == 3: my_code += int('1011', 2) elif char_num == 4: my_code += ( int('10011', 2) * -1 ) elif char_num == 5: my_code += int('1011', 2) elif char_num == 6: my_code += ( int('11100', 2) * -1 ) return chr(my_code) if __name__ == "__main__": secret_word = "m" first_char = "m" for x in range(7): next_char = discover_char(first_char, x) secret_word += next_char first_char = next_char print(secret_word[::-1])