I want to check if the index of list in my list is in same position, then after make the position same I want to print it
news_a = ['A', 'B', 'C', 'D']
news_b = ['E', 'F', 'G', 'H']
for i in news_a:
for j in news_b:
if i == j:
print(f"{i}\n{j}")