Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

1 . Write a python program that writes to a file named NumberList.txt; it should use a loop to write the numbers 1 through 1

1. Write a python program that writes to a file named NumberList.txt; it should use a loop to write the numbers 1 through 100 to the file, each in a separate line, then closes the file.
2. Write a python program that reads numbers from the NumberList.txt file (the one you created above), reads all the numbers and displays them to the screen. The program should also add all the numbers in the file and display their total.
3. Write a python program that opens a directory, reads all the sequence files in that directory and prints out their sequences into another file (not the console or screen) called Output.txt. The sequences should end with a || on a separate line. So for example if your directory has two sequence files and...
Seq1.txt contains this sequence:
>seq1 GAAACCAA
and seq2.txt has this sequence
>seq2 GCCCATTTT
Then the Output file should look like this:
>seq1 GAAACCAA
||
>seq2 GCCCATTTT
||

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Data And Databases

Authors: Jeff Mapua

1st Edition

1978502257, 978-1978502253

More Books

Students also viewed these Databases questions

Question

Write down the Limitation of Beer - Lamberts law?

Answered: 1 week ago

Question

Discuss the Hawthorne experiments in detail

Answered: 1 week ago

Question

Explain the characteristics of a good system of control

Answered: 1 week ago

Question

State the importance of control

Answered: 1 week ago