Hi@akhtar,
Python is capable of creating 3d charts. It involves adding a subplot to an existing two-dimensional plot and assigning the projection parameter as 3d. I have attached one example below for your reference.
from mpl_toolkits.mplot3d import axes3d
import matplotlib.pyplot as plt
chart = plt.figure()
chart3d = chart.add_subplot(111, projection='3d')
X, Y, Z = axes3d.get_test_data(0.08)
chart3d.plot_wireframe(X, Y, Z, color='r',rstride=15, cstride=10)
plt.show()
I hope this will help you.