[EMAIL PROTECTED] wrote:
> 
> I am accessing an Access database with a CGI script, everything works but
> for the problem that the results are in Tuple format when I "print" them as
> an output to a browser client, could someone show me a better way to do
> this or a work around?

If you would rather have the separated by (let's say) "<BR/>", do this:

break = "<BR/>"

print break.join(dbfields) 

This is actually a generic Python question and would probably be best
answered on a standard Python list where there are many more Python
experts.

-- 
Take a recipe. Leave a recipe.  
Python Cookbook!  http://www.ActiveState.com/pythoncookbook
_______________________________________________
ActivePython mailing list
[EMAIL PROTECTED]
http://listserv.ActiveState.com/mailman/listinfo/activepython

Reply via email to