标签: python python-3.x matplotlib figure
简单问题:
import matplotlib.pyplot as plt f = plt.figure() a = f.get_axes()
和
f = plt.figure() a = f.axes
用于检索图实例中的所有轴?有哪些情况会更好?“
答案 0 :(得分:2)
sourcecode for get_axes是:
get_axes
def get_axes(self): return self.axes