python symbol list code example
Example 1: alphabet list python
#Python: premade alphabet string
import string
string.ascii_lowercase
#output: 'abcdefghijklmnopqrstuvwxyz'
string.ascii_uppercase
#output: 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'
Example 2: how to search tuple values in a list in python
test = [("hi", 1), ("there", 2)]
test = dict(test)
print test["hi"] # prints 1