うまくいけば、私はそれをタイトルで十分に説明しましたが、ここに私が持っているものがあります:
入力データ:
Mushroom Kingdom, Mario
Hyrule, Link
Mushroom Kingdom, Bowser
Zebes, Samus
Zebes, Metroid
そして、私はこのようなものを実行したい、
# The next three lines establish that I'll be reading proc as a file
import subprocess
cmd = 'external command that returns the above data'
proc = subprocess.Popen(cmd, stdout=subprocess.PIPE)
homeworlds = {}
while True:
line = proc.stdout.readline().split(',')
if line:
# If line isn't empty
homeword = line[0]
person = line[1]
homeworlds[homeword] = list.append[person] # Good logic? Bad syntax?
else:
break
目標は、私が電話できるようになることです。
print homeworlds['Mushroom Kingdom']
リストを返します
Mario, Bowser