100 # Write a function called print_range_except that
101 # takes as inputs:
102 # int start_num
103 # int stop_num
104 # int step_num
105 # int num_not_to_print
106 # and prints every number from start to stop with
107 # a step size determined by step. If it
108 # encounters num_not_to_print, it should not
109 # print that number. Use for and in and the
110 # range function.