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
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
Database System Concepts
7th Edition
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Chapter1: Introduction
Section: Chapter Questions
Problem 1PE
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
Within the definition of writeStringToFile, use open(___) or open(___, ___=_) in at least one place.
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
Within the definition of readFirstLines, use open(___) or open(___, ___=_) in at least one place.
Within the definition of readFirstLines, use return _ in at least one place.
Within the definition of readFirstLines, use _.readline() in exactly one place.
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
Within the definition of writeLines, use open(___) or open(___, ___=_)in at least one place.
Within the definition of writeLines, use _.write(_) in exactly one place.
Use a open file expression
Use a file .write() call
Define writeLines
Use def to define writeLines
Within the definition of writeLines, use open(___) or open(___, ___=_)in at least one place.
Within the definition of writeLines, use _.write(_) in exactly one place.
Expert Solution
This question has been solved!
Explore an expertly crafted, step-by-step solution for a thorough understanding of key concepts.
This is a popular solution!
Trending now
This is a popular solution!
Step by step
Solved in 2 steps with 5 images
Knowledge Booster
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.Recommended textbooks for you
Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON
Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning
Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education