• + 0 comments

    b=sorted(list(set(scorelist)))[1] Here, set will help us to create set which rule out the duplicate numbers then list of set is created using list() . finally it get sorted and placed in a variable b.