UIFlow Guide
简单的逻辑运算与变量赋值
date = 10
date = 11 + 12
加
/减
/乘
/除
/求余
/幂运算
date = 13 + 4 - 8 % 2 - 7
加
/减
/乘
/除
/求余
/幂运算
date = 5 & 6
date = math.pi
date = 9 % 2
date = 8 % 2 == 0
even
/old
/prime
/whole
/positive
/negative
/divisible by
date = sum(list1)
date = random.random()
date = random.randint(0, 10)
date = min(max(50, 1), 100)
date = math.remap(0, 0, 1023, 0, 255)
date = round(2.4)
date = math.sqrt(0)
sqrt()
/log()
/log10()
/exp()
/pow()
date = math.sin(10 / 180.0 * math.pi)
sin()
/cos()
/tan()
/asin()
/acos()
/atan()
date = int('8')
int
类型date = float('0.8')
float
类型date = ((10 >> 0) & 0x01)
date = (10 | (0x01 << 0))
date = (10 & (~ (0x01 << 0)))
date = int.from_bytes(10, 'big')
date = (10 ^ (0x01 << 0))