簡體   English   中英

在Python中將十六進制轉換為十進制

[英]Converting hexadecimal to decimal in python

我正在嘗試編寫一個將十六進制轉換為十進制的函數。 我有兩個問題。 我無法用數字替換所有字母。 它替換字母然后停止。 其次,如何獲得它以便連續地將每個整數相加?

 def toDecimal(hexidecimal):
    decimal=[hexidecimal[i:i+1] for i in range(0,len(hexidecimal), 1)]
    for i in range(0,len(decimal)):
            if 'a' in decimal:
                decimal[i]='10'
            if 'b' in decimal:
                decimal[i]='11'
            if 'c' in decimal:
                decimal[i]='12'
            if 'd' in decimal:
                decimal[i]='13'
            if 'e' in decimal:
                decimal[i]='14'
            if 'f' in decimal:
                decimal[i]='15'
            return decimal
      #Above I try to convert any letters into a number value 
    for i in range(0,len(decimal)):
        converted_decimal=decimal[i]*(16**i)
        total_decimal=converted_decimal+converted_decimal
    return total_decimal
     #Here I'm trying to add each converted decimal 

您的代碼中有很多問題。 讓我們來看一下:

hexidecimal= "7ac8965f" #hexadecimal value

decimal=[hexidecimal[i:i+1] for i in range(0,len(hexidecimal), 1)]
# >> decimal : ["7","a","c","8","9","6","5","f"]

for i in range(0,len(decimal)):
# first path : i = 0

        # First Error : 'in' is a array-wide search.
        # you want to use :'if decimal[i] == 'a' '
        if 'a' in decimal: # a is in decimal (second pos) so decimal[0] is modified !
            decimal[i]='10'
            # >> decimal : ["10","a","c","8","9","6","5","f"]

        if 'b' in decimal:
            decimal[i]='11'
        if 'c' in decimal:
            decimal[i]='12'
        if 'd' in decimal:
            decimal[i]='13'
        if 'e' in decimal:
            decimal[i]='14'
        if 'f' in decimal: # f is in decimal (last pos) so decimal[0] is modified !
            decimal[i]='15'
            # >> decimal : ["15","a","c","8","9","6","5","f"]

        #Second Error : anticipated return
        #Assuming the indentation is correct, the function exit here, on the 
        #first run of the function
        return decimal

現在一個解決方案:

#dict for conversion (there are more elegant ways to do it, 
#                                                        but this is good enough)
conversion_table = { '0' : 0 ,
                     '1' : 1 ,
                     '2' : 2 ,
                     '3' : 3 ,
                      .......
                     'a' : 10 ,
                     'b' : 11 ,
                     ......
                     'f' : 15
                    }

hexidecimal= "7ac8965f" #hexadecimal value

hexa_list=[ digit for digit in hexidecimal]
# same thing as before, just more "elegant"

decimal = [ conversion_table[hex_digit] for hex_digit in hexa_list]
# convert everything in base10

# reduce the list
return reduce( lambda x,y : x*16 + y, decimal )

我認為閱讀該慣用的python教程對您會有所幫助: http : //python.net/~goodger/projects/pycon/2007/idiomatic/handout.html

def hex2dec(hexadecimal):
    conversion_table = {'A': 10, 'B': 11, 'C': 12, 'D': 13, 'E': 14, 'F': 15}

    hex_list = list(hexadecimal)

    for index, number in enumerate(hex_list):
        number = number.upper()   

        if number in conversion_table:
            hex_list[index] = conversion_table[number]

    int_list = [int(number) for number in hex_list]

    return reduce(lambda x, y: x*16+y, int_list)


print hex2dec('7Ac8965f')    # 2059966047

我在這里很有趣,但是要重寫您的功能...

def toDecimal(hexadecimal):
    decimal = int(hexadecimal, 16)
    return decimal

toDecimal('0xdeadbeef')

我想您是在重新發明輪子,只是為了看看它是如何完成的? :)

有一種更簡單的方法可以做到這一點:

大的東西:

>>> s = "6f48f8248e828ce82f82"
>>> int(s, 16)
525528725744949635067778L

較小的東西:

>>> int('BF', 16)
191

在數字前添加0x不會更改最終結果。

作為功​​能:

def hex2dec(s):
    """return the integer value of a hexadecimal string s"""
    return int(s, 16)

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM