from bk import break_and_show debug = False # set debug to False if you do not want to see breakpoints. data_points = [10, 25, 30, 15, 40] for point in data_points: if debug: break_and_show() print(f"Data point: {point}") my_string = "love" for char in my_string: if debug: break_and_show() print(char) numbers = [11, 22, 33, 44, 55] total_sum = 0 for num in numbers: total_sum += num if debug: break_and_show() print(f"Total sum: {total_sum}")