Def Intersection 47
Def Intersection 47
count = total_students
for student in lst1:
if student in lst2 or student in lst3:
count -= 1
return count
def main():
cricket_players = ["A","B","C","D","E"]
badminton_players = ["C","D","F","G","H"]
football_players = ["B","D","E","F","G"]