我在python代码中使用matplotlib包,但是在VS Code终端中使用“ python3 -u test.py”运行时,它给出了分段错误。一步一步在终端解释器中运行,它不会出现任何错误,甚至可以显示图形。为什么会这样?
import random
from matplotlib import pyplot
r=random.sample(range(120),12)
print("hello")
a=range(1,13)
b=4
print(a,b)
print(r)
pyplot.plot(a,r)
pyplot.show()