我正在尝试检查用户输入的字符串是否包含在其他字符串的列表中以及这些字符串的任何排列中,以“*”分隔。
换句话说,这是我到目前为止的代码:
user_string=raw_input("Please supply a string")
viable_entries=['this', 'that', 'something else']
if user_string in viable_entries:
print "here I'd move on with my script"
如果 user_string = "something else*this" 或 "this*that" 等,我还想打印“在这里我将继续使用我的脚本”。
有没有一种简单的pythonic方法来做到这一点?