I have try to get a specific list of AMI and store it in the array list.
usubuntuamilist = {}
for i, image in enumerate(conn.get_all_images()):
if image.location.startswith("ubuntu-images-us/ubuntu-lucid-10.04-i386-serve"):
print "%s - %s" % (i, image.name)
usubuntuamilist[i] = image.name
How can check if the array position have an existing AMI?
I check using this way but it does not work
userinput = raw_input("Select: ")
try:
usubuntuamilist = usubuntuamilist[userinput]
print usubuntuamilist.location
except:
print "Does not exist!"
Alternative I also tried checking using this way. Both ways does not work
if usubuntuamilist[input] is not None:
print usubuntuamilist[input]
else:
print "Does not exist"
Any ideas? If there is a better alternative to solve this, I would like to heard it!
None, the second option should work. If something else is happening, can you describe that situation? – Michael Mior Oct 11 '11 at 2:54usubuntuamilist[i] = image.namewhenusubuntuamilist[i]does not exist? – Michael Mior Oct 11 '11 at 3:03