print('Hello world!')

i= 0
while i<2:
    i+=1
    print("anup kumar Tirkey is a Mechie.\n");

import matplotlib.pyplot as plt
import numpy as np

x = ["oct","nov"]
y = ["200","300"]

plt.xlabel("months")
plt.ylabel("number of songs sung")
plt.plot(x,y)
plt.show()

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: