Hola,
este código vá de maravilla:
Código:
#!C:\Python27/python
#coding: utf-8
import sys;
print "Content-type: text/html"
print ""
print '<a href="">Esta Página</a> está en el directorio <strong>[',sys.path[0],']</strong>'
Pero se supone que a la función
print le pudo pasar el parámetro
sep="MI SEPARADOR", por ello hago:
Código:
#!C:\Python27/python
#coding: utf-8
import sys;
print "Content-type: text/html"
print ""
print ('<a href="">Esta Página</a> está en el directorio <strong>[',sys.path[0],']</strong>',sep='')
y no vá...
saben cómo puedo hacer uso del
sep='' ?