It looks like you're new here. If you want to get involved, click one of these buttons!
alist = ['hello', 'iexploit', 'whats', 'up']
print alist[1]
sys.exit()
alist = ['a', 'b', 'c']
print alist[1:3]
alist = ['1', '2', '3', '4', '5', '6', '7', '8', '9', '10']
print alist[1:10:2]