1 条题解

  • -1
    @ 2023-1-7 12:01:14
    scoreList = list(map(int,input().split(",")))
    score = sum(scoreList)-max(scoreList)-min(scoreList)
    score /= 6
    print(f"{score:.2f}")
    #print("%.2f"%(score))
    #以上两种方式都可以实现保留固定位数
    """
    如果直接使用
    print(round(score,2)) 
    会导致整数只保留小数点后一位
    70.0 而不是70.00
    """
    
    • 1

    小兰的平均分【STEMA 模拟十二】

    信息

    ID
    1560
    时间
    1000ms
    内存
    128MiB
    难度
    6
    标签
    递交数
    36
    已通过
    11
    上传者