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

x = sum(a)

print(x)
运行结果: