python only*** define the following functions; Function 1. writeStringToFile(fileName, text): This function overwrites the contents of the file named fileName with the string text. Must  Define writeStringToFile Use def to define writeStringToFile   Use a open file expression Within the definition of writeStringToFile, use open(___) or open(___, ___=_) in at least one place.   Use a file .write() call Within the definition of writeStringToFile, use _.write(_) in exactly one place.   Function 2. readFirstLines(fileName, numLines): This function reads the first numLines lines of the file named fileName, returning them as a list of strings (each of which includes a terminating newline character, if there is one). If there are fewer than numLines lines in the file, returns a list of all the lines in the file.    Define readFirstLines Use def to define readFirstLines   Use a open file expression Within the definition of readFirstLines, use open(___) or open(___, ___=_) in at least one place.   Use a return statement Within the definition of readFirstLines, use return _ in at least one place.   Use a file .readline() call Within the definition of readFirstLines, use _.readline() in exactly one place.   Use any kind of loop Within the definition of readFirstLines, use any kind of loop in at least one place.   Function 3. writeLines(fileName, stringList): This function writes all the strings in stringList as separate lines in the file named fileName by adding a newline character after each one. It overwrites any previons contents of the file.    Define writeLines Use def to define writeLines   Use a open file expression Within the definition of writeLines, use open(___) or open(___, ___=_)in at least one place.   Use a file .write() call Within the definition of writeLines, use _.write(_) in exactly one place. Define writeLines Use def to define writeLines   Use a open file expression Within the definition of writeLines, use open(___) or open(___, ___=_)in at least one place.   Use a file .write() call Within the definition of writeLines, use _.write(_) in exactly one place

C++ for Engineers and Scientists
4th Edition
ISBN:9781133187844
Author:Bronson, Gary J.
Publisher:Bronson, Gary J.
Chapter8: I/o Streams And Data Files
Section8.3: Random File Access
Problem 6E
icon
Related questions
Question

python only***

define the following functions;

Function 1. writeStringToFile(fileName, text): This function overwrites the contents of the file named fileName with the string text.

Must 

Define writeStringToFile

Use def to define writeStringToFile
 
Use a open file expression
Within the definition of writeStringToFile, use open(___) or open(___, ___=_) in at least one place.
 
Use a file .write() call
Within the definition of writeStringToFile, use _.write(_) in exactly one place.
 
Function 2. readFirstLines(fileName, numLines): This function reads the first numLines lines of the file named fileName, returning them as a list of strings (each of which includes a terminating newline character, if there is one). If there are fewer than numLines lines in the file, returns a list of all the lines in the file. 
 
Define readFirstLines
Use def to define readFirstLines
 
Use a open file expression
Within the definition of readFirstLines, use open(___) or open(___, ___=_) in at least one place.
 
Use a return statement
Within the definition of readFirstLines, use return _ in at least one place.
 
Use a file .readline() call
Within the definition of readFirstLines, use _.readline() in exactly one place.
 
Use any kind of loop
Within the definition of readFirstLines, use any kind of loop in at least one place.
 
Function 3. writeLines(fileName, stringList): This function writes all the strings in stringList as separate lines in the file named fileName by adding a newline character after each one. It overwrites any previons contents of the file. 
 
Define writeLines
Use def to define writeLines
 
Use a open file expression
Within the definition of writeLines, use open(___) or open(___, ___=_)in at least one place.
 
Use a file .write() call
Within the definition of writeLines, use _.write(_) in exactly one place.
Define writeLines
Use def to define writeLines
 
Use a open file expression
Within the definition of writeLines, use open(___) or open(___, ___=_)in at least one place.
 
Use a file .write() call
Within the definition of writeLines, use _.write(_) in exactly one place.
 
 
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 2 steps with 5 images

Blurred answer
Knowledge Booster
File Input and Output Operations
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
C++ for Engineers and Scientists
C++ for Engineers and Scientists
Computer Science
ISBN:
9781133187844
Author:
Bronson, Gary J.
Publisher:
Course Technology Ptr