代码示例:(标识:python_ref_sum_2)
python_ref_sum_2.py
a = (1, 2, 3, 4, 5)

x = sum(a, 6)

print(x)
运行结果: