The best way of doing this is to read the data in, constructing a set of A items, and a set of B items. Then you simply find the intersection between the two.
The only potential downside is you need to fit all of the data into memory at once. Given your large dataset, this could be a problem. If you could handle half, then you could create your set of A items, then work through the B items checking against the set.
Example:
Using the input data:
A=good
B=c++
A=df
B=kj
A=c++
B=programming language
The first method can be done simply like so:
a = set()
b = set()
with open("test") as data:
for line in data:
line_data = line[2:].strip()
if line.startswith("A"):
a.add(line_data)
else:
b.add(line_data)
print(a & b)
Giving us:
{'c++'}
The second method can be done like so:
with open("test") as data:
a = {line[2:].strip() for line in data if line.startswith("A")}
with open("test") as data:
results = {item for item in (line[2:].strip() for line in data if line.startswith("B")) if item in a}
print(results)
This gives the same results, while only involving storing half of the data in memory (or less if there is significant duplication of data), and is still far more efficient due to the efficient nature of set lookups.