Ver Mensaje Individual
  #2 (permalink)  
Antiguo 10/11/2016, 16:30
Avatar de iukaeru
iukaeru
 
Fecha de Ingreso: mayo-2012
Mensajes: 127
Antigüedad: 12 años
Puntos: 12
Respuesta: leer ficheros y completar url

# 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()
__________________
¡Atencion, Peligro: Autodidacta opinando como si supiera!