-3
在我的標題我的意思是:Python;回到一個行,如果條件=假
myCellar = ["doritos", "chips", "chocolates", ""]
productsInDemand = input("Write a product : ")
for supply in myCellar :
if productsInDemand == supply:
print("This product we have : '",productsInDemand ,"'")
break
else:
print("This product we have not : '",productsInDemand ,"'")
(go back to the line 1)
如果我會寫不會在「mycellar」 excist的產品後,程序將回到第一行再寫一個產品。
我會把'myCellar = 「多力多滋」 ,「芯片」,「巧克力」,「」]'在while循環之前。 – glglgl