1、随机数
python 脚本
import random
def randNum():
res = random.randint(1, 7)
return res
2、自增
python 脚本
total = 0
def accumulate(increment):
global total
if total:
total += increment
else:
total = increment
return total