Python – 在字符列表中测试字符串及其逆向操作
如果需要在字符列表中测试字符串以及相反的操作,可以使用简单的“in”运算符和“join”方法。
下面是对其进行的演示 −
示例
my_string = 'python' print("The string is :") print(my_string) my_key = ['p', 'y', 't', 'h', 'o', 'n', 't', 'e', 's', 't'] print("The key is ") print(my_key) joined_list = ''.join(my_key) my_result = my_string in joined_list print("The result is :") if(my_result == True): print("The string is present in the character list") else: print("The string is not present in the character list")
输出
The string is : python The key is ['p', 'y', 't', 'h', 'o', 'n', 't', 'e', 's', 't'] The result is : The string is present in the character list
说明
定义并显示一个字符串在控制台上。
在控制台上定义并显示键的值。
使用 .join() 函数将键的元素加入来形成一个字符串。
这被分配给一个变量。
将字符串和键进行比较,以查看字符串是否出现在上述列表中。
该结果被分配给一个变量。
根据该结果中的布尔值,在控制台上显示相关消息。
广告