print('Hello world!')

import matplotlib.pyplot as plt
import numpy as np

x = [33000,45000]

y = ["oct", "nov"]

plt.xlabel("sal")
plt.ylabel("months")

plt.plot(x,y)
plt.show()

import matplotlib.pyplot as plt
import numpy as np

x = [45000, 55000]
y = ["x rainfall", " y rainfall "]

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: