在python中,我試圖創建一個程序,檢查'數字'是否在字符串中,但我似乎得到一個錯誤。這裏是我的代碼:檢查是否有任何字符串列表是在另一個字符串
numbers = ["1", "2", "3", "4", "5", "6", "7", "8", "9", "0"]
test = input()
print(test)
if numbers in test:
print("numbers")
這裏是我的錯誤:
TypeError: 'in <string>' requires string as left operand, not list
我試圖改變號碼爲numbers = "0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "0"
它基本上去除[]
但是這也不能工作。希望我能得到答案;謝謝:)
你想知道什麼?如果每個數字都在列表中?或者其中有哪些? – WNG
我想知道是否有任何數字在字符串中。 – jakethefake