python from blaze import Symbol, compute s = Symbol('s', 'datashape') t = Symbol('t', 'int') result = compute(t + 1, {t: [1, 2, 3, 4]}) print(result)