urllib.quote('Irohanihohe')
>Irohanihohe
urllib.unquote('Irohanihohe')
>Irohanihohe
sample = ['aaa', 'bbb']
sample2 = ['222', '333']
print zip(sample, sample2)
> [('aaa', '222'), ('bbb', '333')]
sample = ['aaa', 'bbb']
for num, sam in enumerate(sample):
print num, sam
> 0 aaa
> 1 bbb
Recommended Posts