python內置進制轉換函數

dec = input('10進制數爲:') print("轉換爲二進制爲:", bin(dec)) print("轉換爲八進制爲:", oct(dec)) print("轉換爲十六進制爲:", hex(dec)) string1 = '101010' print('二進制字符串轉換成十進制數爲:',int(string1,2)) string1 = '367' print('八進制字符串轉換成
相關文章
相關標籤/搜索