python得到单词模式的示例

时间:2022-11-22 17:57:36

如下所示:

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
def getWordPattern(word):
 pattern = []
 usedLetter={}
 count=0
 for i in word:
 if i not in usedLetter:
 usedLetter[i]=count
 count+=1
 pattern.append(str(usedLetter[i]))
 return '.'.join(pattern)
def main():
 print getWordPattern("hello")
if __name__=="__main__":
 main()

python得到单词模式的示例

以上这篇python得到单词模式的示例就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持服务器之家。

原文链接:https://blog.csdn.net/CosmopolitanMe/article/details/73196198