如果你是想问如何用脚本统计两队远射次数,通常逻辑是:

# 假设脚本中有类似这样的数据结构
team_a_long_shots = 12 # A队远射
team_b_long_shots = 8 # B队远射
if team_a_long_shots > team_b_long_shots:
print("A队远射更多")
elif team_b_long_shots > team_a_long_shots:
print("B队远射更多")
else:
print("两队远射一样多")
如果你能把脚本输出的那段文字或数据截图发给我,我就能直接告诉你哪队多,你也可以直接告诉我“A队远射X次,B队远射Y次”,我帮你比较。