Database System Concepts
Database System Concepts
7th Edition
ISBN: 9780078022159
Author: Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher: McGraw-Hill Education
Bartleby Related Questions 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
Check Mark
Knowledge Booster
Background pattern image
Computer Science
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
Recommended textbooks for you
Text book image
Database System Concepts
Computer Science
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:McGraw-Hill Education
Text book image
Starting Out with Python (4th Edition)
Computer Science
ISBN:9780134444321
Author:Tony Gaddis
Publisher:PEARSON
Text book image
Digital Fundamentals (11th Edition)
Computer Science
ISBN:9780132737968
Author:Thomas L. Floyd
Publisher:PEARSON
Text book image
C How to Program (8th Edition)
Computer Science
ISBN:9780133976892
Author:Paul J. Deitel, Harvey Deitel
Publisher:PEARSON
Text book image
Database Systems: Design, Implementation, & Manag...
Computer Science
ISBN:9781337627900
Author:Carlos Coronel, Steven Morris
Publisher:Cengage Learning
Text book image
Programmable Logic Controllers
Computer Science
ISBN:9780073373843
Author:Frank D. Petruzella
Publisher:McGraw-Hill Education