data = {"country": ["Brazil", "Russia", "India", "China", "South Africa"],
"capital": ["Brasilia", "Moscow", "New Dehli", "Beijing", "Pretoria"],
"area": [8.516, 17.10, 3.286, 9.597, 1.221],
"population": [200.4, 143.5, 1252, 1357, 52.98]}
data['country'].append('Japan')
data['capital'].append('Tokyo')
data['area'].append(2.213)
data['area'].append(100.25)
print('country', 'area')
for i in zip(data['country'], data['area']):
print(i[0], i[1])
To embed this project on your website, copy the following code and paste it into your website's HTML: