Number System Converter- Python Project for CBSE Class 11
Number System Converter- Python Project Source Code: # -*- coding: utf-8 -*- “”” @author: cbsepython “”” while 1>0: inp=int(input(“enter the number:”)) org=int(input(“enter it base:”)) to=int(input(“enter the base in which it is to be converted:”)) print(“\n”) ######################################################################@ if to==2 or to==8 or to==16 or to==10: out1=0 power=0 while inp>0: out1+=org**power*(inp%10) inp//=10 power+=1 print(“after conversion the result … Read more