Te doy la bienvenida a nuestro sitio web, en este lugar hallarás la respuesta a lo que estabas buscando.
Ejemplo 1: archivo de lectura de Python
withopen("file.txt","r")as txt_file:return txt_file.readlines()
Ejemplo 2: archivo python abierto y reacd
withopen('yourfile.txt','r')as f:
lines = f.readlines()
f.close()
Ejemplo 3: cómo escribir una variable de Python en un archivo
#use pickleimport pickle
dict='one':1,'two':2file=open('dump.txt','w')
pickle.dump(dict,file)file.close()#and to read it againfile=open('dump.txt','r')dict= pickle.load(file)
Ejemplo 4: leer y escribir en el archivo python
file=open(“testfile.txt”, “r+”)
Ejemplo 5: archivo de creación de Python
f=open("guru99.txt","w+")
Ejemplo 6: leer y escribir archivos en python
#Write a Python program to create a file of numbers by taking input from the user and then display the content of the file. You can take input of non-zero numbers, with an appropriate prompt, from the user until the user enters a zero to create the file assuming that the numbers are non-zero.
f =open('NumFile.txt','w')whileTrue:
no =int(input("enter a number (0 for exit)"))if no ==0:print("you entered zero(0) ....... n now you are exit !!!!!!!!!!!")breakelse:
f.write(str(no)+"n")
f.close()
f1 =open('NumFile.txt','r')print("ncontent of file :: n",f1.read())
f1.close()
Comentarios y calificaciones del post
Si piensas que ha sido provechoso nuestro artículo, agradeceríamos que lo compartas con otros programadores y nos ayudes a dar difusión a nuestra información.
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)