import matplotlib.pyplot as plt fig, ax = plt.subplots(figsize=(10,10)) xticks = [i for i in range(10)] ax.set_xticks(xticks) ...
確定! 回上一頁