Create dynamic updated graph with Python

前端 未结 5 1365
情歌与酒
情歌与酒 2021-02-04 19:25

I need your help to write a script in Python that will take dynamically changed data, the source of data is not matter here, and display graph on the screen.

I know how

5条回答
  •  梦谈多话
    2021-02-04 19:36

    Instead of matplotlib.pyplot.show() you can just use matplotlib.pyplot.show(block=False). This call will not block the program to execute further.

提交回复
热议问题