Weiknight0
- Total activity 2
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 0
- Subscriptions 1
-
Weiknight0 created a post, AnsweredFigure and Text Cannot Be Output in the Same Cell
I tried using the following code:import matplotlib.pyplot as pltplt.figure(figsize=(6, 3))plt.imshow([[1, 2], [2, 3]])plt.show()print("done")I found that only "done" was output. After removing plt...