Python习题 249:判断两个单词为相同字母异序词
(编码题)编写一个函数,判断两个单词(字符串)中有相同的单词(字符),即相同字母异序词。
如:
print(anagram( “cinema”, “iceman”)) # True
print(anagram(“cool”, “loco”)) # True
print(anagram (“men”, “women” )) # False
print(anagram (“python”, “pythno”)) # True
Python 代码如下:
def anagram(word1, word2):
word1 = word1.lower(
原文地址:https://blog.csdn.net/2202_76035290/article/details/143785855
免责声明:本站文章内容转载自网络资源,如本站内容侵犯了原著者的合法权益,可联系本站删除。更多内容请关注自学内容网(zxcms.com)!