testerino1
Junior Member
buongiorno.e possibile se qualche utente ne e in posseso archivio del software complotto5.5.6.fermoal 2014.grazie e buone feste a tutti
Follow along with the video below to see how to install our site as a web app on your home screen.
Nota: This feature may not be available in some browsers.
se passi il file si può vedere cosa si può farebuongiorno.e possibile se qualche utente ne e in posseso archivio del software complotto5.5.6.fermoal 2014.grazie e buone feste a tutti
Ho potuto controllare solo installandolo.grazie .purtroppo non sono capace di postare le cose .le scrivo il file se puo essere quellocomplotto-lotto.dat(dat-auto-file)grazie
f=fopen('lotto_it.rec','r');
fnew=fopen('lotto_it.txt','w');
lastline = 'Rank = 2';
stop=0;
while stop==0
s=fgetl(f);
fprintf(fnew,'%s\n',s);
if strcmp(s(1:length(lastline)),lastline)==1
stop=1;
end
end
# program to read data and extract records
# from it in python
# Opening file in read format
File = open('file.dat',"r")
if(File == None):
print("File Not Found..")
else:
while(True):
# extracting data from records
record = File.readline()
if (record == ''): break
data = record.split(',')
data[3] = data[3].strip('\n')
# printing each record's data in organised form
print('Code:',data[0])
print('Name:', data[1])
print('Salary:', data[2])
print('City:', data[3])
File.close()