我被賦予了問題如下Python字典匹配的單詞
「標準輸入由字,每行一個序列的。 寫Python腳本名爲fruit.py只輸出那些水果字。只有五種水果:蘋果,橙子,香蕉和櫻桃。「例如如果標準輸入是「狗貓蘋果蛇櫻桃」標準輸出將是「蘋果櫻桃」。一段時間以來,我一直對字典有困難,所以任何幫助都將不勝感激!
import sys
fruit = {
"apple": True,
"pair": True,
"orange": True,
"banana": True,
"cherry": True,
}
n = sys.stdin.readlines()
i = 0
while i < len(n):
if n[i] in fruit:
fruit[n[i]] = False
sys.stdout.write() (n[i])
i = i + 1
你提供什麼是與代碼問題了嗎? –
這不是一個codecademy問題嗎? – WhatsThePoint