es
Feedback
CBSE COMPUTER SCIENCE

CBSE COMPUTER SCIENCE

Ir al canal en Telegram

QUESTION BANK, REFERENCE BOOK, LAB MANUAL , WORKSHEET ETC., PYTHON TEXT BOOK AND REFERENCE BOOKS, 01. ASK QUESTIONS AT https://t.me/joinchat/FJ1noGs-64I0OWI1

Mostrar más
549
Suscriptores
Sin datos24 horas
Sin datos7 días
Sin datos30 días
Archivo de publicaciones
photo content

photo content

photo content

photo content

photo content

photo content

photo content

photo content

photo content

photo content

photo content

photo content

photo content

photo content

#Text File creation name=input("Enter your name : ") age=input("Enter your age : ") f=open('apple.txt','a') f.write("\n"+name) f.write(" "+age) print("Appended") f.close()

import pickle #Write to Binary file L1=[10,20,30,40] F1=open('Orange.dat','wb') pickle.dump(L1,F1) F1.close() print("Binary file created") #Reading from Binary File F2=open('Orange.dat','rb') L2=pickle.load(F2) print("File content is ",L2) F2.close()

NUMBER SYSTEM CONVERSION

photo content