Итак, я работаю над программой преобразования, в которой у вас есть текущее и базовое значение, и вы должны иметь возможность преобразовать ваше текущее и базовое значение в «десятичное, восьмеричное и т. Д.».Я в основном сделал программу, но я ошеломлен тем, как реализовать последний метод для попытки получить пользовательский ввод для нового тока или базы, который обновляет его до нового тока и базы.
Спасибо всем!
class numberConverter:
def __init__(self, current=0, base=10):
self.__current = current
self.__base = base
def print(self):
print("Current set to:",
self.__current, "Base set to:", self.__base)
def menu(self):
return("\n'S'et\n'C'urrent\n'B'inary\n'H'ex\n'O'ctal\n'D'ecimal\n'q'uit: ")
#Converts to Hexidecimal
def convHex(self):
print("Hex Conversion Commencing")
print("Converting:", self.__current, "Base", self.__base, "to Base 16")
self.__current = format(int(str(self.__current), self.__base), '02X')
self.__base = 16
self.print()
#Converts to Octal
def convOct(self):
print("Octal Conversion Commencing")
print("Converting:", self.__current, "Base", self.__base, "to Base 8")
self.__current = format(int(str(self.__current), self.__base), '02o')
self.__base = 8
self.print()
#Converts to Decimal
def convDec(self):
print("Decimal Conversion Commencing")
print("Converting:", self.__current, "Base", self.__base, "to Base 10")
self.__current = format(int(str(self.__current), self.__base))
self.__base = 10
self.print()
#Converts to Binary
def convBinary(self):
print("Binary Conversion Commencing")
print("Converting:", self.__current, "Base", self.__base, "to Base 2")
self.__current = format(int(str(self.__current), self.__base), '02b')
self.__base = 2
self.print()
#Change the current value or base
#This is the section I am trying to work on
def setCurrent(self):
userInput = str(input("Set 'C'urrent or 'B'ase: "))
if userInput.upper() == "C":
print(input("Enter new current value: "))
elif userInput.upper() == "B":
print(input("Enter new base value: "))
num1 = numberConverter(14,10)
select = ""
while select !='q':
select = input(num1.menu())
if select == "C":
num1.print()
if select == "H":
num1.convHex()
if select == "O":
num1.convOct()
if select == "D":
num1.convDec()
if select == "B":
num1.convBinary()
if select == "S":
num1.setCurrent()