1. 程式人生 > >用python實現英文字母和相應序數轉換的方法

用python實現英文字母和相應序數轉換的方法

第一步:字母轉數字

英文字母轉對應數字相對簡單,可以在命令行輸入一行需要轉換的英文字母,然後對每一個字母在整個字母表中匹配,並返回相應的位數,然後累加這些位數即可。過程中,為了使結果更有可讀性,輸出相鄰數字間怎加了空格,每個對應原來單詞間增加逗號。

c="abcdefghijklmnopqrstuvwxyz"
temp=''
list=[]
s=input()
num=len(s)
list.append(s)
for i in range(0,num):
if list[0][i]==' ':
temp+=','
else:
for r in range(1,26):
if list[0][i]==c[int(r)-1]:
temp+=str(r)
temp+=' '
print("輸出結果為:%s"%temp)

第二步:數字轉字母

  • 1.數字轉字母有個難點就是,當輸入一行數字,如何才能合理地把它們每個相應位的數取出來。才開始想到用正則匹配,定模式單元(\d+,{0,}),然後希望每個數字用.groups()形式返回一個元組(tuple),但限於要輸入數字的個數位置,沒找到好的匹配方式。
  • 2.然後用到了split()函式,用相應的分隔符分割一段字串之後,將值已list形式返回。
c="abcdefghijklmnopqrstuvwxyz"
temp=''
s=input()
s_list=s.split(",")
num=len(s_list)
for i in range(0,num):
if s_list[i]==' ':
temp+=' '
else:
result=c[int(s_list[i])-1]
temp+=result
print("輸出結果是:%s"%temp)

完整程式碼

#-*- coding: utf-8 -*-
import re
def main():
ss=input("請選擇:\n1.字母->數字\
\n2.數字->字母\n")
if ss=='1':
print("請輸入字母: ")
fun1()
elif ss=='2':
print("請輸入數字:")
fun2()
def fun1():
c="abcdefghijklmnopqrstuvwxyz"
temp=''
list=[]
s=input()
num=len(s)
list.append(s)
for i in range(0,num):
if list[0][i]==' ':
temp+=','
else:
for r in range(1,26):
if list[0][i]==c[int(r)-1]:
temp+=str(r)
temp+=' '
print("輸出結果為:%s"%temp)

def fun2():
c="abcdefghijklmnopqrstuvwxyz"
temp=''
s=input()
s_list=s.split(",")
num=len(s_list)
for i in range(0,num):
if s_list[i]==' ':
temp+=' '
else:
result=c[int(s_list[i])-1]
temp+=result
print("輸出結果是:%s"%temp)

if __name__ == '__main__':
main()

便可利用該python程式碼實現英文字母和對應數字的相互轉換。
用python實現英文字母和相應序數轉換的方法用python實現英文字母和相應序數轉換的方法

原文來自: https://www.linuxprobe.com/python-zim-num.ht