ここには、10進数を16進数に変換する関数がありますが、逆の順序で出力します。どうすれば修正できますか?
def ChangeHex(n):
if (n < 0):
print(0)
Elif (n<=1):
print(n)
else:
x =(n%16)
if (x < 10):
print(x),
if (x == 10):
print("A"),
if (x == 11):
print("B"),
if (x == 12):
print("C"),
if (x == 13):
print("D"),
if (x == 14):
print("E"),
if (x == 15):
print ("F"),
ChangeHex( n / 16 )
組み込み関数hex()
を使用する代わりにこれを自分でコーディングする場合は、現在の数字を出力する前に単純に再帰呼び出しを行うことができます。
def ChangeHex(n):
if (n < 0):
print(0)
Elif (n<=1):
print n,
else:
ChangeHex( n / 16 )
x =(n%16)
if (x < 10):
print(x),
if (x == 10):
print("A"),
if (x == 11):
print("B"),
if (x == 12):
print("C"),
if (x == 13):
print("D"),
if (x == 14):
print("E"),
if (x == 15):
print ("F"),
これはどうですか:
hex(dec).split('x')[-1]
例:
>>> d = 30
>>> hex(d).split('x')[-1]
'1e'
〜リッチ
Split()の結果で-1を使用すると、splitが1つの要素のリストを返した場合でも機能します。
これはまさにあなたが求めたものではありませんが、Pythonで「hex」関数を使用できます。
>>> hex(15)
'0xf'
このソリューションはエレガントだと思います:
def toHex(dec):
x = (dec % 16)
digits = "0123456789ABCDEF"
rest = dec / 16
if (rest == 0):
return digits[x]
return toHex(rest) + digits[x]
numbers = [0, 11, 16, 32, 33, 41, 45, 678, 574893]
print [toHex(x) for x in numbers]
print [hex(x) for x in numbers]
この出力:
['0', 'B', '10', '20', '21', '29', '2D', '2A6', '8C5AD']
['0x0', '0xb', '0x10', '0x20', '0x21', '0x29', '0x2d', '0x2a6', '0x8c5ad']
私が使う
"0x%X" % n
ここで、n
は変換する10進数です。
_'0x'
_プレフィックスなしの場合:
_'{0:x}'.format(int(dec))
_
それ以外の場合は、組み込みのhex()
機能を使用します。
Hex()組み込み関数の使用とは別に、これはうまく機能します。
letters = [0,1,2,3,4,5,6,7,8,9,'A','B','C','D','E','F']
decimal_number = int(input("Enter a number to convert to hex: "))
print(str(letters[decimal_number//16])+str(letters[decimal_number%16]))
ただし、これは255までの10進数を変換する場合にのみ機能します(2桁の16進数を与えるため)。
純粋な16進値を取得するには、これが役立つ場合があります。それはジョーの答えに基づいています:
def gethex(decimal):
return hex(decimal)[2:]
def main():
result = int(input("Enter a whole, positive, number to be converted to hexadecimal: "))
hexadecimal = ""
while result != 0:
remainder = changeDigit(result % 16)
hexadecimal = str(remainder) + hexadecimal
result = int(result / 16)
print(hexadecimal)
def changeDigit(digit):
decimal = [10 , 11 , 12 , 13 , 14 , 15 ]
hexadecimal = ["A", "B", "C", "D", "E", "F"]
for counter in range(7):
if digit == decimal[counter - 1]:
digit = hexadecimal[counter - 1]
return digit
main()
これは、10進数を16進数に変換するために作成できる最高の密度です。注:これはPythonバージョン3.5.1にあります
これが私が使用する最良の方法です
hex(53350632996854).lstrip("0x").rstrip("L")
# lstrip helps remove "0x" from the left
# rstrip helps remove "L" from the right
# L represents a long number
例:
>>> decimal = 53350632996854
>>> hexadecimal = hex(decimal).lstrip("0x")
>>> print(hexadecimal)
3085a9873ff6
大文字が必要な場合、たとえば「上関数」を使用できます:
decimal = 53350632996854
hexadecimal = hex(decimal).lstrip("0x").upper()
print(hexadecimal)
3085A9873FF6
n = eval(input("Enter the number:"))
def ChangeHex(n):
if (n < 0):
print(0)
Elif (n<=1):
print(n),
else:
ChangeHex( n / 16 )
x =(n%16)
if (x < 10):
print(x),
if (x == 10):
print("A"),
if (x == 11):
print("B"),
if (x == 12):
print("C"),
if (x == 13):
print("D"),
if (x == 14):
print("E"),
if (x == 15):
print ("F"),
関数内のすべてを印刷する代わりに、16進数で値を返すことを許可し、必要な処理を実行できます。
def ChangeHex(n):
x = (n % 16)
c = ""
if (x < 10):
c = x
if (x == 10):
c = "A"
if (x == 11):
c = "B"
if (x == 12):
c = "C"
if (x == 13):
c = "D"
if (x == 14):
c = "E"
if (x == 15):
c = "F"
if (n - x != 0):
return ChangeHex(n / 16) + str(c)
else:
return str(c)
print(ChangeHex(52))
おそらく、条件を単に使用する代わりに、ヘックスのアルファベット要素を解析するよりエレガントな方法があるでしょう。
hex_map = {0:0, 1:1, 2:2, 3:3, 4:4, 5:5, 6:6, 7:7, 8:8, 9:9, 10:'A', 11:'B', 12:'C', 13:'D', 14:'E', 15:'F'}
def to_hex(n):
result = ""
if n == 0:
return '0'
while n != 0:
result += str(hex_map[(n % 16)])
n = n // 16
return '0x'+result[::-1]
反復を使用するバージョン:
def toHex(decimal):
hex_str = ''
digits = "0123456789ABCDEF"
if decimal == 0:
return '0'
while decimal != 0:
hex_str += digits[decimal % 16]
decimal = decimal // 16
return hex_str[::-1] # reverse the string
numbers = [0, 16, 20, 45, 255, 456, 789, 1024]
print([toHex(x) for x in numbers])
print([hex(x) for x in numbers])