If you want to use QGIS, you can use the following code in the Python Console which uses the QgsCoordinateReferenceSystem class to transform your points:
old_crs = QgsCoordinateReferenceSystem(4326)
new_crs = QgsCoordinateReferenceSystem(4209)
transform = QgsCoordinateTransform(old_crs, new_crs)
transform_points = transform.transform(QgsPoint(27.04892, -13.30552))
print transform_points
This will print out:
(27.0491,-13.304)

If you want to use this outside QGIS such as in the OSGeo4W shell then you could use the osgeo.osr.SpatialReference() class:
from osgeo import osr
old_crs = osr.SpatialReference()
old_crs.ImportFromEPSG(4326)
new_crs = osr.SpatialReference()
new_crs.ImportFromEPSG(4209)
transform = osr.CoordinateTransformation(old_crs,new_crs)
transform_points = transform.TransformPoint(27.04892, -13.30552)
print transform_points[0], transform_points[1]
This should print out:
27.0490596011 -13.3039944497
