您的位置:

Python 程序:检查两个字符串是否是异序词

写一个 Python 程序来检查两个字符串是否是异序词。例如,如果一个字符串通过重新排列其他字符串字符而形成,则它是一个异序词字符串。例如,三角形和积分都将通过重新排列字符而形成。

在本 Python 示例中,sorted 方法按字母顺序对两个字符串进行排序,if 条件检查两个排序后的字符串是否相等。如果为真,则两个字符串是异序词。

str1 = input("Enter the First String  = ")
str2 = input("Enter the Second String = ")

if(sorted(str1) == sorted(str2)):
    print("Two Strings are Anagrams.")
else:
    print("Two Strings are not Anagrams.")

Enter the First String  = listen
Enter the Second String = silent
Two Strings are Anagrams.

Python 程序检查两个字符串是否是异序词或者没有使用集合库中的计数器。

from collections import Counter

str1 = input("Enter the First String  = ")
str2 = input("Enter the Second String = ")

if(Counter(str1) == Counter(str2)):
    print("Two Strings are Anagrams.")
else:
    print("Two Strings are not Anagrams.")
Enter the First String  = race
Enter the Second String = care
Two Strings are Anagrams.

Enter the First String  = dare
Enter the Second String = care
Two Strings are not Anagrams.
Python 程序:检查两个字符串是否是异序词

2022-07-24
Python 程序:检查两个字符串是否是异序词

2022-07-24
Python 程序:检查异序词

2022-07-24
Python 程序:检查给定字符串是否为回文

2022-07-24
Python 程序:检查字符串是否为全字母句

什么是全字母句字符串? 这里有一个全字母句程序,用于检查字符串是否是全字母句。单词表是一个包含英语中所有字母的句子。这意味着字符串必须包含英语中的所有字母。让我们举一个流行的庞拉姆的例子“敏捷的棕色狐

2023-12-08
Python 程序:检查字符是否是字母

2022-07-24
Python 程序:检查字符是否小写

2022-07-24
Python 程序:检查字符是否大写

2022-07-24
Python 程序:检查字符是否为数字

2022-07-24
Python 程序:检查的数字是否是回文

2022-07-24
Python isnumeric:检查字符串是否是数字

2023-05-12
Python 程序:检查两个数字是友好数字

2022-07-24
Python 程序:查找字符串中的单词和字符数

如何计算 python 字符串中的单词和字符? 在这个字符串 python 程序中,我们需要计算一个字符串中的字符和单词数。让我们检查一个例子“我爱我的国家”在这个字符串中,我们的字数为 4,字符数为

2023-12-08
Python 程序:检查字符是字母还是数字

2022-07-24
Python 程序:检查年份是否是闰年

2022-07-24
Python 程序:检查一个数字是否是 Disarium 数

2022-07-24
Python 程序:检查给定的数字是否是一个完美数

2022-07-24
Python 程序:检查字符是小写还是大写

2022-07-24
Python 程序:检查的数字是否是幸福数字

2022-07-24
Python 程序:检查数字是否是 diarium 数字

2022-07-24