摘要: 1 def is_angram(word1,word2): 2 if len(word1) != len(word2): 3 return False 4 a = list(word1) 5 b = list(word2) 6 c = a[:] 7 for i in a: 8 if i in b: 阅读全文
posted @ 2022-03-17 23:20 玫瑰少年 阅读(157) 评论(0) 推荐(0) 编辑