I need help with some code with I can't get to work, I have to make code so that it prints;
Country Capital
France Paris
Uk London
Belgium Brussels
etc..
This is what I have wrote so far..
Country = ["France","UK","Belgium","Spain"]
Capital = ["Paris","London","Brussels","Madrid"]
print("\n\t Country \t Capital")
for country in Country:
print("\t",country)
for capital in Capital:
print("\t",capital)
but it prints ;
Country Capital
France
UK
Belgium
Spain
Paris
London
Brussels
Madrid
i cant seem to get the capitals to be under the capital section. please help, thanks