Matplotlib - 3D Plotting
What output will this code produce?
import matplotlib.pyplot as plt fig = plt.figure() ax = fig.add_subplot(111, projection='3d') ax.plot([0,1],[0,1],[0,1]) plt.show()
