hi. i know my question is a basic one, but i am a noob when it comes to Python. now, how do i search a csv file?. e.g. i will enter an employee id and it will return the name and address of that employee id. thank you
> i will enter an employee id and it will return the name and address of that employee id.
If you are going to do this repeatedly, read the file once and populate an associative array with the employee id as the key. http://www.Python/reference/stl/map/