print('Hello world!')

import matplotlib.pyplot as plt
import numpy as np

x = ["oct","nov","dec"]
y = ["250mm","300mm","215mm"]

plt.xlabel("months")
plt.ylabel("rainfall")
plt.plot(x,y)
plt.show()

x = 1
while x <5:
    x+=1
    print("anup kumar tirkey is a Mechie.\n");

print("hello. 28.10.25")

import matplotlib.pyplot as plt
import numpy as np

x = ["nov","dec"]
y = [33000,35000]
plt.xlabel("months")
plt.ylabel("salary")
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: