What would be the best way of storing a python list of numbers (such as [4, 7, 10, 39, 91]) to a database? I am using the Pyramid framework with SQLAlchemy to communicate to a d
Use string(Varchar). From Zen of Python: "Simple is better than complex."