This is a sample_list = [628.6, 628.25, 632.8, 634.65, 634.9, 635.85, 633.55]
I want to create a bool list of true/false based on the condition that if a list value is greater than the previous value, it should be true, else false. In my case, result should be something like this:
mybools = [False,True,True,True,True,False]
how do I do that?