📜  检查两个字符串是否是字谜python代码示例

📅  最后修改于: 2022-03-11 14:47:20.793000             🧑  作者: Mango

代码示例1
if sorted(s1) == sorted(s2): 
    print("The strings are anagrams.") 
else: 
    print("The strings aren't anagrams.")