1. python 如何將ascii數字轉換成字母求代碼
嘗試一下 chr 函數
2. 請問python 如何讓字母和數字一 一對應 輸入一個字母 可以轉換為數字
因為「字母」是一個有限離散的集合,比較簡單的處理方式是定義一個map:
letter_to_number={'A':1,'B':2}
letter='A'
number=letter_to_number[letter]#number=1
另外,如果這個轉換關系恰好跟字母的ascii碼值有某種函數關系的話,也可以這樣:
letter='A'
number=ord(letter)-ord('A')+1#number=1
3. python 將數字轉換成對應的英文數字
dic={'0':'zero','1':'one','2':'two','3':'three','4':'four','5':'five','6':'six','7':'seven','8':'eight','9':'nine'}
print 'plz input a number:'
n = raw_input()
s = str(n)
result = ''
for i in s:
result += dic[ i ]
result += ' '
print result
4. python中想要把字母或數字轉為16進制\x30格式並且輸出,但是最終顯示卻還是字母是怎麼回事呢
給你一個函數試試。
def str_to_hex(s):
return ' '.join([hex(ord(c)).replace('0x', '') for c in s])
5. python如何將ascii碼轉換為字母
可以使用內置的chr()函數:
chr() 用一個范圍在 range(256)內的(就是0~255)整數作參數,返回一個對應的字元。
比如chr(88) 會返回大寫字母:X
與chr()函數相對應的函數是ord()函數,使用ord('X') 會返回:88
6. python中將阿拉伯數字轉換為中文
第一種方案:
def num_to_char(num):
"""數字轉中文"""
num=str(num)
new_str=""
num_dict={"0":u"零","1":u"一","2":u"二","3":u"三","4":u"四","5":u"五","6":u"六","7":u"七","8":u"八","9":u"九"}
listnum=list(num)
# print(listnum)
shu=[]
for i in listnum:
# print(num_dict[i])
shu.append(num_dict[i])
new_str="".join(shu)
# print(new_str)
return new_str
第二種方案
_MAPPING = (u'零', u'一', u'二', u'三', u'四', u'五', u'六', u'七', u'八', u'九', u'十', u'十一', u'十二', u'十三', u'十四', u'十五', u'十六', u'十七',u'十八', u'十九')
_P0 = (u'', u'十', u'百', u'千',)
_S4 = 10 ** 4
def _to_chinese4(num):
assert (0 <= num and num < _S4)
if num < 20:
return _MAPPING[num]
else:
lst = []
while num >= 10:
lst.append(num % 10)
num = num / 10
lst.append(num)
c = len(lst) # 位數
result = u''
for idx, val in enumerate(lst):
val = int(val)
if val != 0:
result += _P0[idx] + _MAPPING[val]
if idx < c - 1 and lst[idx + 1] == 0:
result += u'零'
return result[::-1]
7. Python的openpyxl模塊中,列字母與數字之間轉換的命令叫什麼
函數get_column_letter已被重定位到Openpyxl版本2.4openpyxl.cell中openpyxl.utils。
目前介面在:from openpyxl.utils import get_column_letter
代碼如下:
fromopenpyxl.utilsimportget_column_letter
fromopenpyxl.utilsimportcolumn_index_from_string
print(get_column_letter)
print(column_index_from_string)
輸出:
<function get_column_letter at 0x000002489F407510>
<function column_index_from_string at 0x000002489F407598>
8. python 將英文字母轉成對應的ASCII數字
1、創建python文件,testascii.py;