Sending serial from python to an arduino

I'm working on a project where I send a bunch of data through an arduino to my laptop.  I'm using python serial to read in the serial data.  That part is working fine.  Then I do some processing and I want to send the results back to the arduino.  This part is not working so well.  

It seems like python  serial.write()  only likes to send strings?  Right now I'm trying to send back one integer value.  Any ideas how to do that?  

Have you done any internet searching?

This link http://stackoverflow.com/questions/3507732/sending-integer-values-to-arduino-from-pyserial seems to be very relevant to your problem.

Thanks

I did search but missed that post.  I got a bit lost int he pyserial docs. 

Maybe one of these?First one

Maybe one of these?

First one i found that looked usefull was this one:

http://www.arduino.cc/cgi-bin/yabb2/YaBB.pl?num=1274205532

But then i found THIS one: 

http://arduino.cc/playground/Interfacing/Python