import random

marks = [0,1,2,3,4,5]

t=random.choice(marks)
del marks[t-1]

print(marks)