Question: would like some help please! QUESTION 2 Consider the following Python code, where infile.txt and outfile.txt both exist in the current directory: open ( '
would like some help please!






QUESTION 2 Consider the following Python code, where infile.txt and outfile.txt both exist in the current directory: open ( ' out file. txt ' , 'w ' ) open ( ' infile . txt' , ' r' ) new = old = for line in old: new.write (line) new.write(n) new.close ) old.close ) Which of the following options best describes the purpose or outcome of this code? A copy of the file infile.txt is made (except in double line spacing) and saved as outfile.txt in the current directory. A copy of the file infile.txt is made (except with newline characters removed) and saved as outfile.txt, in the current directory. An exact copy of the file infile.txt is made and saved as outfile.txt in the current directory A copy of the file outfile.txt is made (except in double line spacing) and saved as infile.txt in the current directory. A copy of the file outfile.txt is made (except with newline characters removed) and saved as infile.txt in the current directory. An exact copy of the file outfile.txt is made and saved as infile.txt in the current directory A copy of the file called 'new' is made (except in double line spacing) and saved as 'old' in the current directory A copy of the file called 'new' is made (except with newline characters removed) and saved as 'old' in the current directory An exact copy of the file called 'new' is made and saved as 'old' in the current directory A copy of the file called 'old' is made (except in double line spacing) and saved as 'new' in the current directory A copy of the file called 'old' is made (except with newline characters removed) and saved as 'new' in the current directory An exact copy of the file called 'old' is made and saved as 'new' in the current directory
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
