我是python新手。我試圖創建一個函數,它將字符串和列表作爲參數,併爲字符串中找到的每個列表元素(這應該作爲元組返回)返回一個布爾值。我曾嘗試下面的代碼列表元組返回python
def my_check(str1, list1):
words = str1.split()
x = 1
for l in range(len(list1)):
for i in range(len(words)):
if list1[l] == words[i]:
x = x+1
if (x > 1):
print(True)
x = 1
else:
print(False)
output = my_check('my name is ide3', ['is', 'my', 'no'])
print(output)
此代碼輸出
True
True
False
我怎樣才能返回這個值作爲一個元組
>>> output
(True, True, False)
任何想法表示讚賞。