python進制
❶ 怎樣用python進行二進制,八進制,十進制轉換
從二進制轉換為十進制有幾種方式
第一種是在二進制數前加上0b,顯示時會自動轉換為十進制,注意這並不是字元串
x = 0b1010print(x)
如果是字元串可以利用eval求值
x = eval('0b1010')
第二種是利用int函數,字元串可以以0b為前綴,也可以不使用
int('1010',base=2)int('0b1010',2)
函數會將輸入base進制的字元串轉換為十進制
❷ python八進制轉換為十進制
a = input('請輸入一個八進制數:')
sum = 0
for i in range(len(a)-1,-1,-1):
sum += int(a[0])*(8**i)
print('%d 的十進制為:%d' % (int(a), sum))
❸ python的進制轉換問題
int類是將指定進制下的數字轉換為十進制數字
你在python命令下輸入help(int),會出現下面這段話
class int(object)
| int(x=0) -> int or long
| int(x, base=10) -> int or long
|
| Convert a number or string to an integer, or return 0 if no arguments
| are given. If x is floating point, the conversion truncates towards zero.
| If x is outside the integer range, the function returns a long instead.
|
| If x is not a number or if base is given, then x must be a string or
| Unicode object representing an integer literal in the given base. The
| literal can be preceded by '+' or '-' and be surrounded by whitespace.
| The base defaults to 10. Valid bases are 0 and 2-36. Base 0 means to
| interpret the base from the string as an integer literal.
你碰到的問題在可以引用上面這段英文來解釋
If x is not a number or if base is given, then x must be a string or
Unicode object representing an integer literal in the given base.
翻譯過來是如果參數不是數字類型,或者base參數給出了,那麼x必須是基於指定進制(默認是十進制)下的數字序列的字元串,所以下面舉得例子有的成功有的報錯:
int('123')#可以成功,執行,123十進制數字內
int('A123')#報錯,因為A不在十進制數內
int('A123',16)#可以成功,因為A123,都是十六進制內的基本數字
int('010101',2)#可以成功,因為0和1都是二進制的基本數字。
樓上的也說了,組成二進制的數字是只有0和1的,你的輸入中可是包含了非二進制的數字呢
❹ python怎樣將16進制轉化為2進制
#coding=gbk
var=input("請輸入十六進制數:")
b=bin(int(var,16))
print(b[2:])
運行結果
詳細請參考python自帶int函數、bin函數用法
參考網址:https://docs.python.org/3/library/functions.html?highlight=int#bin
classint(x,base=10)
Return aninteger object constructed from a number or stringx, or return0if no arguments are given. Ifxis a number, returnx.__int__(). For floating point numbers, this truncates towards zero.
Ifxis not a number or ifbaseis given, thenxmust be a string,bytes, orbytearrayinstance representing aninteger literalin radixbase. Optionally, the literal can be preceded by+or-(with no space in between) and surrounded by whitespace. A base-n literal consists of the digits 0 to n-1, withatoz(orAtoZ) having values 10 to 35. The defaultbaseis 10. The allowed values are 0 and 2–36. Base-2, -8, and -16 literals can be optionally prefixed with0b/0B,0o/0O, or0x/0X, as withinteger literals in code. Base 0 means tointerpret exactly as a code literal, so that the actual base is 2, 8, 10, or 16, and so thatint('010',0)is not legal, whileint('010')is, as well asint('010',8).
Theinteger type is described inNumeric Types — int, float, complex.
Changed in version 3.4:Ifbaseis not an instance ofintand thebaseobject has abase.__index__method, that method is called to obtain aninteger for the base. Previous versions usedbase.__int__instead ofbase.__index__.
Changed in version 3.6:Grouping digits with underscores as in code literals is allowed.
2.bin(x)
Convert aninteger number to a binary string. The result is a valid Python expression. Ifxis not a Pythonintobject, it has to define an__index__()method that returns an integer.
❺ python怎麼講十六進制python進制轉換
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# 2/10/16 base trans. wrote by srcdog on 20th, April, 2009
# ld elements in base 2, 10, 16.
import os,sys
# global definition
# base = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, A, B, C, D, E, F]
base = [str(x) for x in range(10)] + [ chr(x) for x in range(ord('A'),ord('A')+6)]
# bin2dec
# 二進制 to 十進制: int(str,n=10)
def bin2dec(string_num):
return str(int(string_num, 2))
# hex2dec
# 十六進制 to 十進制
def hex2dec(string_num):
return str(int(string_num.upper(), 16))
# dec2bin
# 十進制 to 二進制: bin()
def dec2bin(string_num):
num = int(string_num)
mid = []
while True:
if num == 0: break
num,rem = divmod(num, 2)
mid.append(base[rem])
return ''.join([str(x) for x in mid[::-1]])
# dec2hex
# 十進制 to 八進制: oct()
# 十進制 to 十六進制: hex()
def dec2hex(string_num):
num = int(string_num)
mid = []
while True:
if num == 0: break
num,rem = divmod(num, 16)
mid.append(base[rem])
return ''.join([str(x) for x in mid[::-1]])
# hex2tobin
# 十六進制 to 二進制: bin(int(str,16))
def hex2bin(string_num):
return dec2bin(hex2dec(string_num.upper()))
# bin2hex
# 二進制 to 十六進制: hex(int(str,2))
def bin2hex(string_num):
return dec2hex(bin2dec(string_num))
❻ python十進制轉二進制3位數
設 num1 為123,通過 type( ) 可以看到類型為 int
使用 bin( ) 函數將 num1 轉換為二進制,返回值存入 bin_num1
但 num1 本身沒有改變,返回的 bin_num1 是二進製表示,但 bin_num1類型是 str
❼ python各種進制求值的方法
defcheckio(str_number,radix):
str_int=dict(map(lambdax,y:(y,x),[iforiinrange(10,36)],[chr(i)foriinrange(97,123)]))
int_int=dict(map(lambdax,y:(str(x),y),[iforiinrange(10)],[iforiinrange(10)]))
sum=0
times=0
foriinreversed(str_number):
v=int_int.get(i,None)
ifv==None:
v=str_int.get(i.lower(),None)
ifv>=radix:
return-1
else:
sum+=viftimes==0elsev*radix**times
times+=1
returnsum
#These"asserts"usingonlyforself--testing
if__name__=='__main__':
assertcheckio("AF",16)==175,"Hex"
assertcheckio("101",2)==5,"Bin"
assertcheckio("101",5)==26,"5base"
assertcheckio("Z",36)==35,"Zbase"
assertcheckio("AB",10)==-1,"B>A=10"
print("Codingcomplete?Click'Check'!")
❽ Python中的不同進制的語法和轉換
不同進制的書寫方式
八進制(Octal) 0o377
十六進制(Hex) 0xFF
二進制(Binary) 0b11111111
不同進制之間的轉換
Python提供了三個內置的函數,可以用來在不同進制間做轉換。
>>> oct(255), hex(255), bin(255)
('0o377', '0xff', '0b11111111')
還可以使用int函數,把字元串轉成數值
>>> int('255'), int('0xFF', 16)
(255, 255)
除此之外還可以使用eval,功能類似於int函數,但是它的參數是python代碼。
>>> eval('255'), eval('0xFF')
(255, 255)
當然也可使用字元串的格式化輸出
>>> '{0:0}, {1:x}, {2:b}'.format(255, 255, 255)
'255, ff, 11111111'
>>> '%o, %x, %X' % (255, 255, 255)
'377, ff, FF'
❾ 關於python如何實現各進制轉換的總結大全
ctf經常遇到進制轉換的問題,就正好做一個進制轉換總結,分享出來供大家參考學習,下面來一起看看詳細的介紹:
字元串與十六進制轉換
例如網路ctf 12月的第二場第一個misc
?
1
626536377D
比較簡單的一種做法就是直接調用字元串的.decode('hex')解密即可, 但如果不用這個函數你會怎麼解呢?
一種思路就是先2個分組,解出每組的ascii值,合並下字元串即可得到,具體代碼如下
?
1234567
import res='626536377D's = re.findall(r'.{2}',s)s = map(lambda x:chr(int(x,16)),s)print ''.join(s)>>>flag{ec8b2ee0-3ae9-4c21-a012-08aa5fa7be67}
前面說了字元串的decode('hex')函數,另外還有兩個轉16進制的函數,這里都總結一下
內置函數hex()
只能轉換10進制整數為十六進制,不能轉字元串
binascii庫的hexlify()和b2a_hex()
這兩個函數的功能是將字元串轉換成十六進制,對應的解密函數分別為 unhexlify()和a2b_hex()
進制互轉
二進制,八進制,十六進制轉10進制比較簡單,直接調用
int函數
?
1
int(str,base) //返回十進制整數,但注意此時第一個參數為字元串
對應的解密函數分別是
?
12345
bin() //10進制轉二進制 oct() //十進制轉八進制 hex() //十進制轉十六進制
但二進制直接轉16進制就需要多走一步了,先用int轉十進制,在用上面提到的hex()函數將十進制轉換成十六進制,比較精簡的寫法是
?
1
map(lambda x:hex(int(x,2)),['0011']) //lambda表達式
或者是
?
1
[hex(int(x,2)) for x in ['0011']] //列表解析
對應的解密函數就是
?
1
map(lambda x:bin(int(x,16)),['ef'])
最後在附上自己用python寫的一個進制轉換小工具,主要功能是對一組二進制,或者ascii,或十六進制轉換成字元串,想必ctf上也經常會遇到這類題型吧
?
041424344
# make by 江sir#coding:utf-8import reimport argparse def bintostr(text): text = text.replace(' ','') text = re.findall(r'.{8}',text) s = map(lambda x:chr(int(x,2)),text) #批量二進制轉十進制 flag = ''.join(s) return flag def asciitostr(text): if ' ' in text: text = text.split(' ') elif ',' in text: text = text.split(',') s = map(lambda x:chr(int(x)),text) flag = ''.join(s) return flag def hextostr(text): text = re.findall(r'.{2}',text) #print text s = map(lambda x:chr(int(x,16)),text) #print s flag = ''.join(s) return flag if __name__ == '__main__': parser = argparse.ArgumentParser() parser.add_argument("-b") parser.add_argument("-a") parser.add_argument("-x") argv = parser.parse_args() #print argv if argv.b: res = bintostr(argv.b) elif argv.a: res = asciitostr(argv.a) elif argv.x: res = hextostr(argv.x) print res
用法:
十六進制轉字元串:
626536377D
?
12
bintostr.py -x "626536377D"flag{ec8b2ee0-3ae9-4c21-a012-08aa5fa7be67}
二進制轉字元串:
可以有空格,也可以無空格
00101111 01100110 00110110 00110111 00110011 00110010 00110100 00110001 00110000 01100001 01100001 01100100 01100011 00110000 00110011 00110111 01100110 01100010 00110000 01100011 01100010 01100001 01100001 00110000 00110000 01100011 00110111 00110101 00110011 00110001 00110011 00110111 00110011 00101110 01110100 01111000 01110100
?
12
bintostr.py -b "00101111 01100110 00110110 00110111 00110011 00110010 00110100 00110001 00110000 01100001 01100001 01100100 01100011 00110000 00110011 00110111 01100110 01100010 00110000 01100011 01100010 01100001 01100001 00110000 00110000 01100011 00110111 00110101 00110011 00110001 00110011 00110111 00110011 00101110 01110100 01111000 01110100"/.txt
ascii轉字元串
可以是空格分隔,也可以是,分隔
s='45 46 45 46 32 45 32 46 46 45 46 32 46 45 46 46 32 46 46 46 32 45 46 46 46 32 46 46 45 45 46 45 32 45 46 46 46 32 46 46 46 32 46 45 46 46 32'
?
12
bintostr.py -a "45 46 45 46 32 45 32 46 46 45 46 32 46 45 46 46 32 46 46 46 32 45 46 46 46 32 46 46 45 45 46 45 32 45 46 46 46 32 46 46 46 32 46 45 46 46 32"-.-. - ..-. .-.. ... -... ..--.- -... ... .-..
以上實例均來自某些ctf賽題
總結
❿ python怎麼輸入16進制數
a='0x0012e' b= hex(eval(a)) print b 輸出 0x12e 注意,一般計算機的十六進制數直接輸出的時候是不補0的,所以 0x12e 就是 0x0012e,就好像 0005和5在整型數是存儲成一樣的值。