# Python program using Pandas for
# arranging a given set of data
# into a table
# importing pandas as pd
import pandas as pd
data = {"country": ["Brazil", "Russia", "India", "China", "South
Africa"],
"capital": ["Brasilia", "Moscow", "New Delhi", "Beijing", "Pre-
toria"],
"area": [8.516, 17.10, 3.286, 9.597, 1.221],
"population": [200.4, 143.5, 1252, 1357, 52.98] }
data table = [Link](data)
print(data_table)
# Python program using Matplotlib
# for forming a linear plot
# importing the necessary packages and modules
import [Link] as plt
import numpy as np
# Prepare the data
x = [Link](0, 10, 100)
# Plot the data
[Link](x, x, label ='linear')
# Add a legend
[Link]()
# Show the plot
[Link]()