'''Consider The marks list given below. identify the python code could be written in the Line1 such that the ouput is ["FA2",95]'''
marks=["FA1",80,"FA2",85,"FA3",95]
report=marks[-4]
#report=report[:1]+marks[5:]
#report=report[2:3]+marks[-2:]
report=marks[-4:-2]
#report=marks[:2]
print(report)
'''
OUTPUT
['FA2', 85]
'''