-
Notifications
You must be signed in to change notification settings - Fork 0
/
10 File Handling.py
626 lines (483 loc) · 12.7 KB
/
10 File Handling.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
#!/usr/bin/env python
# coding: utf-8
# ## SESSION: File Handling
# Q. 91: Create a dynamic file and read
# QUESTION DESCRIPTION
# Write a python program to create a file and display the contents (dynamic number of lines)
# Hint:
# 1. Create a File
# 2. Take the input as number of lines to be written into the file
# 3. Based on the number of lines get the input from the user
# 4. Add a new line to the file after each input.
# 5. Display the contents of the file written in the output
# Input:
# 1. Filename
# 2,3,4,5 = File contents
# TEST CASE 1
# INPUT
# sample.txt
# 5
# This is First Line
# This is Second Line
# This is Third Line
# This is Fourth Line
# This is Fifth Line
# OUTPUT
# This is First Line
# This is Second Line
# This is Third Line
# This is Fourth Line
# This is Fifth Line
# Number of lines:
# 10
# TEST CASE 2
# INPUT
# sample.txt
# 3
# This is First Line
# This is Second Line
# This is Third Line
# OUTPUT
# This is First Line
# This is Second Line
# This is Third Line
# Number of lines:
# 6
import string
file_name = input()
file = open(file_name, 'w+')
n = int(input())
for i in range(n):
content = input()
file.write(content + "\n\n")
file.write(f"Number of lines:\n{n*2}")
file.close()
f = open(file_name)
print(f.read())
# Q. 92: Captilize each word
# QUESTION DESCRIPTION
# Write a python program to create a file and Capitalise each word (Starting letter) in the file
# Hint:
# 1. Create a File
# 2. Take the input as number of lines to be written into the file
# 3. File name to be searched
# Input:
# 1. Filename
# 2. The number of lines to be written into the file
# 3. File name
# Output:
# Display the file content with capitalise of each word (Starting letter)
# TEST CASE 1
# INPUT
# sample.txt
# 4
# This is First Line of the file
# This is Second Line of the file create in eLab Server
# This is Third Line sample line
# This is fourth line of the file and eLab is an auto evaluation tool launched in 2017
# sample.txt
# OUTPUT
# This Is First Line Of The File
# This Is Second Line Of The File Create In Elab Server
# This Is Third Line Sample Line
# This Is Fourth Line Of The File And Elab Is An Auto Evaluation Tool Launched In 2017
# TEST CASE 2
# INPUT
# sample.txt
# 2
# This is First Line of the file
# This is Second Line of the file create in eLab Server
# sample.txt
# OUTPUT
# This Is First Line Of The File
# This Is Second Line Of The File Create In Elab Server
file_name = input()
file = open(file_name, 'w+')
n = int(input())
for i in range(n):
content = input()
file.write(string.capwords(content) + "\n\n")
file.close()
f = open(file_name)
print(f.read())
# Q. 93: Create a dynamic file and read the number of lines
# QUESTION DESCRIPTION
# Write a python program to create a file and display the contents (dynamic number of lines)
# Hint:
# 1. Create a File
# 2. Take the input as number of lines to be written into the file
# 3. Based on the number of lines get the input from the user
# 4. Add a new line to the file after each input.
# 5. Display the contents of the file written in the output
# 6. Display the Number of Lines in the File in the output
# Input:
# 1. Filename
# 2,3,4,5 = File contents
# TEST CASE 1
# INPUT
# sample.txt
# 5
# This is First Line
# This is Second Line
# This is Third Line
# This is Fourth Line
# This is Fifth Line
# OUTPUT
# This is First Line
# This is Second Line
# This is Third Line
# This is Fourth Line
# This is Fifth Line
# Number of lines:
# 5
# TEST CASE 2
# INPUT
# sample.txt
# 4
# This is First Line
# This is Second Line
# This is Third Line
# This is Fourth Line
# OUTPUT
# This is First Line
# This is Second Line
# This is Third Line
# This is Fourth Line
# Number of lines:
# 4
file_name = input()
file = open(file_name, 'w+')
n = int(input())
for i in range(n):
content = input()
file.write(content + "\n")
file.write(f"Number of lines:\n{n}")
file.close()
f = open(file_name)
print(f.read())
# Q. 94: Count the words
# QUESTION DESCRIPTION
# Write a python program to create a file and display the contents (dynamic number of lines) and count the number of words in the file.
# Hint:
# 1. Create a File
# 2. Take the input as number of lines to be written into the file
# 3. Based on the number of lines get the input from the user
# 4. Get the file name from the user for performing operations
# 5. Count the number of words in the file and display the number of words in the fie
# Input:
# 1. Filename
# 2. The number of lines to be written into the file
# 3. File name to perform operations
# TEST CASE 1
# INPUT
# sample.txt
# 2
# eLab an auto evaluation tool in Tamilnadu
# eLab will be launched in SWAYM platform soon
# sample.txt
# OUTPUT
# Number of words:
# 15
# TEST CASE 2
# INPUT
# sample.txt
# 4
# This is First Line of the file
# This is Second Line of the file create in eLab Server
# This is Third Line sample line
# This is fourth line of the file and eLab is an auto evaluation tool launched in 2017
# sample.txt
# OUTPUT
# Number of words:
# 41
file_name = input()
file = open(file_name, 'w+')
n = int(input())
word_count = 0
for i in range(n):
content = input()
file.write(content + "\n\n")
word_count += len(content.split())
file.close()
print(f"Number of words:\n{word_count}")
# Q. 95: Create a File and read
# QUESTION DESCRIPTION
# Write a python program to create a file and display the contents
# Hint:
# 1. Create a File
# 2. Take four inputs from the user and add the four lines to the file
# 3. Display the contents of the file written in the output
# Input:
# 1. Filename
# 2,3,4,5 = File contents
# TEST CASE 1
# INPUT
# sample.txt
# This is First Line
# This is Second Line
# This is Third Line
# This is Fourth Line
# OUTPUT
# This is First LineThis is Second LineThis is Third LineThis is Fourth Line
# TEST CASE 2
# INPUT
# sample.txt
# eLab
# Tool
# is an
# auto evaluation tool
# OUTPUT
# eLab Tool is an auto evaluation tool
file_name = input()
file = open(file_name, 'w+')
n = 4
for i in range(n):
content = input()
file.write(content)
file.close()
f = open(file_name)
print(f.read())
# Q. 96: Reverse File
# QUESTION DESCRIPTION
# Write a Python Program to create a file and display the content(dynamic number of lines) and print the files contents in reverse order.
# Hint 1:
# 1. Create a file
# 2. Take the Input as number of lines to be written into the file
# 3. Based on the number of lines get the input from the user
# 4. Get the file name from the user for performing operations
# 5. Count the number of words in the file and display the number of words in the file input
# Input1:
# 1: Filename
# 2: The number of lines to be written into the file.
# 3. File name to perform operations
# TEST CASE 1
# INPUT
# sample.txt
# 4
# eLab an auto evaluation tool in Tamilnadu - eLab
# eLab will be launched in SWAYM platform soon - eLab
# eLab is used by 45000+users every year- eLab
# eLab is a copyleft tool - eLab
# sample.txt
# OUTPUT
# eLab is a copyleft tool - eLab
# eLab is used by 45000+users every year- eLab
# eLab will be launched in SWAYM platform soon - eLab
# eLab an auto evaluation tool in Tamilnadu - eLab
# TEST CASE 2
# INPUT
# sample.txt
# 2
# eLab an auto evaluation tool in Tamilnadu
# eLab will be launched in SWAYM platform soon
# sample.txt
# OUTPUT
# eLab will be launched in SWAYM platform soon
# eLab an auto evaluation tool in Tamilnadu
file_name = input()
file = open(file_name, 'w+')
n = int(input())
for i in range(n):
content = input()
file.write(content + "\n")
file.close()
f = open(file_name)
lines = f.read().strip().split("\n")
rev = lines[::-1]
for line in rev:
print(line)
# Q. 97: Find the letter
# QUESTION DESCRIPTION
# Write a python program to create a file and display the contents (dynamic number of lines) and count the occurrence of the letter in the file and display the count.
# Hint:
# 1. Create a File
# 2. Take the input as number of lines to be written into the file
# 3. Based on the number of lines get the input from the user
# 4. Input the file name to perform the operations
# 5. Input the letter to be searched in the file
# Input:
# 1. Filename
# 2. The number of lines to be written into the file
# 3. File name
# 4. Letter to be searched
# Output:
# The occurrence(count) of the letter
# TEST CASE 1
# INPUT
# sample.txt
# 4
# eLab
# eLab eLab
# eLab eLab tool
# eLab eLab eLab eLab tool
# sample.txt
# e
# OUTPUT
# Occurrences of the letter
# 9
# TEST CASE 2
# INPUT
# sample.txt
# 2
# eLab eLab tool
# eLab eLab eLab eLab tool
# sample.txt
# L
# OUTPUT
# Occurrences of the letter
# 6
file_name = input()
file = open(file_name, 'w+')
n = int(input())
for i in range(n):
content = input()
file.write(content)
file.close()
f_name = input()
key = input()
f = open(f_name)
ref = f.read()
print(f"Occurrences of the letter\n{ref.count(key)}")
# Q. 98: Count Words
# QUESTION DESCRIPTION
# Write a python program to create a file and display the count of all the characters in the file
# Hint:
# 1. Create a File
# 2. Take the input as number of lines to be written into the file
# 3. Based on the number of lines get the input from the user
# 4. File name to be searched
# Input:
# 1. Filename
# 2. The number of lines to be written into the file
# 3. File name
# Output:
# Display the count of all characters in the file
# TEST CASE 1
# INPUT
# sample.txt
# 2
# eLab is an auto evaluation tool
# This file program in eLab will show you the count of words in the file except numbers like 1234567890
# sample.txt
# OUTPUT
# 99
# TEST CASE 2
# INPUT
# sample.txt
# 3
# eLab is an auto evaluation tool
# This file program in eLab will show you the count of words in the file except numbers like 1234567890
# 2017 2016 2015 2018 eLab
# sample.txt
# OUTPUT
# 103
file_name = input()
file = open(file_name, 'w+')
n = int(input())
char_count = 0
for i in range(n):
content = input()
file.write(content + "\n\n")
words = content.split()
for word in words:
if not word.isdigit():
char_count += len(word)
file.close()
print(char_count)
# Q. 99: Reverse File
# QUESTION DESCRIPTION
# Write a python program to create a file and display the contents (dynamic number of lines) and print the files contents in reverse order.
# Hint:
# 1. Create a File
# 2. Take the input as number of lines to be written into the file
# 3. Based on the number of lines get the input from the user
# 4. Get the file name from the user for performing operations
# 5. Count the number of words in the file and display the number of words in the fie
# Input:
# 1. Filename
# 2. The number of lines to be written into the file
# 3. File name to perform operations
# TEST CASE 1
# INPUT
# sample.txt
# 4
# eLab an auto evaluation tool in Tamilnadu - eLab
# eLab will be launched in SWAYM platform soon - eLab
# eLab is used by 45000+users every year- eLab
# eLab is a copyleft tool - eLab
# sample.txt
# OUTPUT
# eLab is a copyleft tool - eLab
# eLab is used by 45000+users every year- eLab
# eLab will be launched in SWAYM platform soon - eLab
# eLab an auto evaluation tool in Tamilnadu - eLab
# TEST CASE 2
# INPUT
# sample.txt
# 2
# eLab an auto evaluation tool in Tamilnadu
# eLab will be launched in SWAYM platform soon
# sample.txt
# OUTPUT
# eLab will be launched in SWAYM platform soon
# eLab an auto evaluation tool in Tamilnadu
file_name = input()
file = open(file_name, 'w+')
n = int(input())
for i in range(n):
content = input()
file.write(content + "\n")
file.close()
f = open(file_name)
lines = f.read().strip().split("\n")
rev = lines[::-1]
for line in rev:
print(line)
# Q. 100: Count Number
# QUESTION DESCRIPTION
# Write a python program to create a file and display the contents (dynamic number of lines) and count the numbers in the file and display the count.
# Hint:
# 1. Create a File
# 2. Take the input as number of lines to be written into the file
# 3. Based on the number of lines get the input from the user
# 4. Input the file name to perform the operations
# Input:
# 1. Filename
# 2. The number of lines to be written into the file
# 3. File name
# Output:
# The total count of the numbers in the file
# TEST CASE 1
# INPUT
# sample.txt
# 2
# eLab 1.0 launched in 2017
# eLab 2.0 next version will be launched in 2019
# sample.txt
# OUTPUT
# 12
# TEST CASE 2
# INPUT
# sample.txt
# 3
# eLab 1.0 launched in 2017
# eLab 2.0 next version will be launched in 2019
# 2016 2017 2018 2019 2020 2021
# sample.txt
# OUTPUT
# 36
file_name = input()
file = open(file_name, 'w+')
n = int(input())
char_count = 0
for i in range(n):
content = input()
file.write(content + "\n\n")
words = content.split()
for word in words:
if word.replace('.', '').isdigit():
char_count += len(word)
if "." in word:
char_count -= 1
file.close()
print(char_count)