“Python Ciąg na Hex” Kod odpowiedzi

Ciąg do Hex Python

>>> s = 'The quick brown fox jumps over the lazy dog.'.encode('utf-8')
>>> s
b'The quick brown fox jumps over the lazy dog.'
>>> s.hex()
'54686520717569636b2062726f776e20666f78206a756d7073206f76657220746865206c617a7920646f672e'
TalaatMagdy

Python Ciąg na Hex

hex_string = "0xAA"
# "0x" also required

an_integer = int(hex_string, 16)
# an_integer is a decimal value

hex_value = hex(an_integer)
print(hex_value)
AlarmClockMan

Odpowiedzi podobne do “Python Ciąg na Hex”

Pytania podobne do “Python Ciąg na Hex”

Więcej pokrewnych odpowiedzi na “Python Ciąg na Hex” w Python

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu