私のタイトルでは、私はそれを意味します:
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'に存在しない製品を作成する場合、プログラムは最初の行に戻って製品を再度作成します。