Ok so im going to list my question and then the work so far. Here is the code so far:(THE PROBLEM WITH THE CODE IS THAT THE IM SUPPOSE TO USE FIND() TO REPEATEDLY CHANGE THE OCCURRENCE OF THE WORD "MASK" TO THE WORD "HAT" IN THE FILE BUT AM KIND OF LOST HAVE BEEN WORKING ON THIS FOR A WEEK AND A HALF) ALSO I CAN NOT use the replace method, count method, split method, range() function, or lists in your solution. HAVE BEEN TRYING TO FIND SUM WAY TO USE FIND() BUT AM COMING UP SHORT I HAVE TO USE FIND() TO GET EVERY OCURRANCE BUT AM HAVING TROUBLE WITH THAT  ** I CAN NOT use the replace method, count method, split method, range() function, or lists ** fileOne = input("Enter the input file name:") fileTWo = input("Enter the output file name:") f = open('infile.txt', 'r') f.read() targetString = input("Enter the target string:") replacementString = input("Enter the replacement string :") Fhand = open(“inFile.txt”) for line in fhand: line = line.rstrip() If line.find(“mask”) == -1: continue print(line)

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
icon
Related questions
Question

Ok so im going to list my question and then the work so far.

Here is the code so far:(THE PROBLEM WITH THE CODE IS THAT THE IM SUPPOSE TO USE FIND() TO REPEATEDLY CHANGE THE OCCURRENCE OF THE WORD "MASK" TO THE WORD "HAT" IN THE FILE BUT AM KIND OF LOST HAVE BEEN WORKING ON THIS FOR A WEEK AND A HALF) ALSO I CAN NOT use the replace method, count method, split method, range() function, or lists in your solution. HAVE BEEN TRYING TO FIND SUM WAY TO USE FIND() BUT AM COMING UP SHORT

I HAVE TO USE FIND() TO GET EVERY OCURRANCE BUT AM HAVING TROUBLE WITH THAT 

** I CAN NOT use the replace method, count method, split method, range() function, or lists **

fileOne = input("Enter the input file name:")
fileTWo = input("Enter the output file name:")
f = open('infile.txt', 'r')
f.read()
targetString = input("Enter the target string:")
replacementString = input("Enter the replacement string :")

Fhand = open(“inFile.txt”)
for line in fhand:
line = line.rstrip()
If line.find(“mask”) == -1: continue
print(line)
 

 

 

main.py
inFile.py
outfile.py
Overview
wear masks with two or more layers to stop the spread of COVID-19
wear the mask over your nose and mouth and secure it under your chin
masks should be worn by people two years and older
masks should NOT be worn by children younger than two, people who have trouble
breathing, or people who cannot remove the mask without assistance
do NOT wear masks intended for healthcare workers, for example, N95 respirators
CDC does not recommend the use of face shields alone. Evaluation of face shields
is ongoing but effectiveness is unknown at this time.
evaluation of mask and gaiter materials and structure is ongoing.
Transcribed Image Text:main.py inFile.py outfile.py Overview wear masks with two or more layers to stop the spread of COVID-19 wear the mask over your nose and mouth and secure it under your chin masks should be worn by people two years and older masks should NOT be worn by children younger than two, people who have trouble breathing, or people who cannot remove the mask without assistance do NOT wear masks intended for healthcare workers, for example, N95 respirators CDC does not recommend the use of face shields alone. Evaluation of face shields is ongoing but effectiveness is unknown at this time. evaluation of mask and gaiter materials and structure is ongoing.
Enter the input file name: inFile.txt
Enter the output file name: outFile.txt
Enter target string: mask
Enter the replacement string: hat
inFile.txt for this example contains:
overview
wear masks with two or more layers to stop the spread of COVID-19
wear the mask over your nose and mouth and secure it under your chin
masks should be worn by people two years and older
- masks should NOT be worn by children younger than two, people who have
- do NOT wear masks intended for healthcare workers, for example, N95 re
- CDC does not recommend the use of face shields alone. Evaluation of få
- evaluation of mask and gaiter materials and structure is ongoing.
outFile.txt, after replacing each occurrence of the string 'mask' with 'hat' looks like this:
Overview
- wear hats with two or more layers to stop the spread of COVID-19
- wear the hat over your nose and mouth and secure it under your chin
hats should be worn by people two years and older
hats should NOT be worn by children younger than two, people who have
do NOT wear hats intended for healthcare workers, for example, N95 res
- CDC does not recommend the use of face shields alone. Evaluation of fa
- evaluation of hat and gaiter materials and structure is ongoing.
All strings are case-sensitive. That is, 'the' will NOT match 'The' in the source string.
Transcribed Image Text:Enter the input file name: inFile.txt Enter the output file name: outFile.txt Enter target string: mask Enter the replacement string: hat inFile.txt for this example contains: overview wear masks with two or more layers to stop the spread of COVID-19 wear the mask over your nose and mouth and secure it under your chin masks should be worn by people two years and older - masks should NOT be worn by children younger than two, people who have - do NOT wear masks intended for healthcare workers, for example, N95 re - CDC does not recommend the use of face shields alone. Evaluation of få - evaluation of mask and gaiter materials and structure is ongoing. outFile.txt, after replacing each occurrence of the string 'mask' with 'hat' looks like this: Overview - wear hats with two or more layers to stop the spread of COVID-19 - wear the hat over your nose and mouth and secure it under your chin hats should be worn by people two years and older hats should NOT be worn by children younger than two, people who have do NOT wear hats intended for healthcare workers, for example, N95 res - CDC does not recommend the use of face shields alone. Evaluation of fa - evaluation of hat and gaiter materials and structure is ongoing. All strings are case-sensitive. That is, 'the' will NOT match 'The' in the source string.
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 3 steps with 3 images

Blurred answer
Knowledge Booster
Mergesort
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
Database System Concepts
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)
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
Digital Fundamentals (11th Edition)
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
C How to Program (8th Edition)
C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON
Database Systems: Design, Implementation, & Manag…
Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning
Programmable Logic Controllers
Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education