0
Write a program to copy one file into another after converting all lower case characters to upper case
Code in python
6 Respostas
+ 1
Hi! You tryed to solved this?
+ 1
you should try and show us the code of your attempt
+ 1
well, then give it a shot...
0
No👀
0
Ohk I will try it 1st
0
FYI, you can open() 2 files within a context manager using;
with open('file1.txt', 'r') as in_file, \
open('file2.txt', 'w') as out_file:
...
# code working with files
...