Python Sumbu Kembar

import numpy as np
import matplotlib.pyplot as plt
ax1=plt.subplot(111)
ax1.plot(np.arange(0,10),np.arange(0,10))
ax2=ax1.twinx()
ax2.plot(np.arange(10,20),np.arange(100,110))
Tremendous Enceladus