There is a code like below :
L=[]
element = input().split()
L.append(element)
If I input some elements, how could I find the same elements?
like
[['Jason', '100'],['Kevin', '50'],['Petty', '70'],['Jason', '100']]
and how could the python remind me there is 2 or more['Jason', '100'] in the list when I input?
Thank you!