#notamental Print is now a function, not a statement. xD
Esta sección te permite ver todos los mensajes escritos por este usuario. Ten en cuenta que sólo puedes ver los mensajes escritos en zonas a las que tienes acceso en este momento.
Mostrar Mensajes Menúimport webbrowser
webbrowser.open("www.google.com")
Cita de: Novlucker en 5 Enero 2010, 00:15 AM
Probaste sin usar buffer?s = f.read()
#Escribimos el resultado en un archivo
log_file = open("log.txt", "w+")
Saludos
Cita de: CaronteGold en 5 Enero 2010, 00:48 AM
Ya sé por qué es, tienes que cerrar tambien log_file, quedando log_file.close()
import urllib
a="http://diveintopython.org/html_processing/extracting_data.html"
#Abrimos la url
f = urllib.urlopen(a)
s = f.read(10000)
#Escribimos el resultado en un archivo
log_file = open("log.txt", "w+" ,10000)
log_file.write(s)
f.close()
raw_input()
Citarfile.write(str)
Write a string to the file. There is no return value. Due to buffering, the string may not actually show up in the file until the flush() or close() method is called.
hello = "Hola mundo"
print(hello)
input()