Home > Community > FPScript > How to continue a “For Each Value” Loop in FPScript? > Antwort auf: How to continue a “For Each Value” Loop in FPScript?

#12823
Sven WickSven Wick
Mitglied

Hi,

here is a snippet from one of our Python scripts,
which I would like to port to FPScript.



...

import fileinput

for line in fileinput.input():

  if not CURRENT_TEMP > RANGE_MIN and CURRENT_TEMP  RANGE_MIN And CURRENT_TEMP < RANGE_MAX Then
 
   // Do nothing. Just get the next value
 
 End

 // ...

End