Viving Frendiana - Penyelesaian Sistem Transmisi dengan Pemr

101 zo = zo*10**6 elif self.ui.zo_satuanq.currentText() == "kΩ": zo = zo*10**3 elif self.ui.zo_satuanq.currentText() == "Ω": zo elif self.ui.zo_satuanq.currentText() == "mΩ": zo = zo*10**-3 elif self.ui.zo_satuanq.currentText() == "µΩ": zo = zo*10**-6 elif self.ui.zo_satuanq.currentText() == "nΩ": zo = zo*10**-9 elif self.ui.zo_satuanq.currentText() == "pΩ": zo = zo*10**-12 #Satuan ZL1 if self.ui.zl_satuanq.currentText() == "GΩ": zl1 = zl1*10**9 elif self.ui.zl_satuanq.currentText() == "MΩ": zl1 = zl1*10**6 elif self.ui.zl_satuanq.currentText() == "kΩ": zl1 = zl1*10**3 elif self.ui.zl_satuanq.currentText() == "Ω": zl1 elif self.ui.zl_satuanq.currentText() == "mΩ": zl1 = zl1*10**-3 elif self.ui.zl_satuanq.currentText() == "µΩ": zl1 = zl1*10**-6 elif self.ui.zl_satuanq.currentText() == "nΩ": zl1 = zl1*10**-9 elif self.ui.zl_satuanq.currentText() == "pΩ": zl1 = zl1*10**-12 #Satuan ZL1

RkJQdWJsaXNoZXIy MTM3NDc5MQ==