Cita:
Iniciado por iukaeru
# Python 3.x
arx1 = open("fichero1.txt", "r").read()
arx2 = open("fichero1.txt", "r").read()
url = input(">")
mostrar = url + arx1 + arx2
print(mostrar)
arx3 = open("cargaWeb", "w")
arx3.write(mostrar)
arx3.close()
hola,
he probado lo que me has pasdo, pero parece q no va..
![triste](http://static.forosdelweb.com/fdwtheme/images/smilies/frown.png)
al ejecutar con python3, me muestra en lineas separadas las lecturas de los ficheros, y querría q fuera en una linea seguida.. y posteriormente no parece abrir la URL ..
![triste](http://static.forosdelweb.com/fdwtheme/images/smilies/frown.png)
¿alguna idea?