For loop

Is there a way too jump out of a for loop ( for x in range(count):slight_smile: before its count is completed based on logic it executes?

Yes by using a break command:for x in range(count): ... # here is some code break