Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想绘制一条正在进行计算的线。例如:我有一个类似的函数a,b = Update(),在计算的下方我想绘制新计算points(a,b)的,我应该在 Python 中使用什么样的库?
a,b = Update()
points(a,b)
a,b = Update()# a, b are just a float value, or maybe an array so a,b can combine to form a group of points points(a,b)
我是一个新的 Python 初学者,所以...