It's an expression..
From the manual:
clamp(x, lower, upper)
Return lower if x is less than lower, upper if x is greater than upper, else return x.
System every tick
sprite set width : clamp(self.width,10,200)
this way the width of the sprite can never be more than 200 or less than 10