



Question 14:
f1=open("mytest.txt","w+")
f1.write("hello\n") #writes hello into file
for i in range(5):
f1.write(str(i)+"\n") #writes 1 2 3 4 5 into file
f1.readlines()
f1.close()
ANSWER: Prints nothing to screen
Question 15:
f1=open("mytest.txt","r")
for line in f1:
print(line.strip(),end=";") #strips lines and each line ends with
;
f1.close()
ANSWER:
hello;0;1;2;3;4;
Question 16:
f1=open("mytest.txt","r+")
f1.readlines()
f1.close()
ANSWER:
Prints nothing to the screen
Question 17:
f1.write("hello again\n")
f1.readlines()
ANSWER:
Prints nothing to screen
Adds hello again to end of file
Question 18:
f1.seek(0,0)
f1.readlines()
ANSWER:
prints
nothing to screen
Question
19:
f1.seek(0,0)
for line in f1:
print(line.strip(),end=";") #strips lines add ; to each line
f1.readlines() #just reads lines prints nothing to screen
ANSWER:
hello;0;1;2;3;4;hello again;
mytest.txt
hello
0
1
2
3
4
hello again
use python IDEL Please highlight the answer Problem 2 Files. Since almost all data can be...
use python IDEL
Please highlight the answer
1 ווCIוסטIT Errors and Exceptions. There are two main types of errors: syntax errors and runtime errors. Syntax errors are detected by the Python interpreter before the program execution during the parsing stage (parsing is a process, during which the Python interpreter analyzes the grammatical structure of the program). Runtime errors are errors in a program that are not detected by the Python interpreter during its parsing stage. They are further divided into...
use python IDEL
Please highlight the answer
Problem 1 Errors and Exceptions. There are two main types of errors: syntax errors and runtime errors. Syntax errors are detected by the Python interpreter before the program execution during the parsing stage (parsing is a process, during which the Python interpreter analyzes the grammatical structure of the program). Runtime errors are errors in a program that are not detected by the Python interpreter during its parsing stage. They are further divided into...
use python IDEL
Please highlight the answer
Problem 3 Files. Read the following code and answer the next five questions about it. The contents of the files list 1.txt and list2.txt are the following (given side by side): list 1. txt content: list2.txt content 2 apples 2 apples 3 oranges 1 loaf of bread 2 eggs 2 eggs 1 cereal box # the program code starts here filename1 = "list 1.txt" filename2 - "list2.txt" filename3 - "listdiff.txt" with open (filename1,"r")...
Python: 1) Consider the following code segment: try : inputFile = open("lyrics.txt", "r") line = inputFile.readline() print(line) _____________________ print("Error") What should be placed in the blank so that the program will print Error instead of crashing if an exception occurs while opening or reading from the file? Group of answer choices a- except RuntimeError : b- except EnvironmentError : c- except IOError : d- except IndexError : 2) Consider the following code segment: line = "hello world!" parts = line.split()...
In Python Please!
16.42 Lab 13B: Palindromes with Files Overview This is a demonstration of reading and writing files. Objectives Be able to read from an input file, perform string manipulation on each line of the file, and write to an output file. Provided input file: A single input file named myinput.txt is provided that contains a few lines of text. bob sees over the moon never odd or even statistics dr awkward Provided output file: A single output file...
Python Programming QUESTION 16 Which of the following is an example of a Keyword in Python? elif class for All of the above QUESTION 17 Which of the following is not an acceptable variable name in Python? 2ndVar $amount Rich& ard None of the above are acceptable variable names QUESTION 18 The number 1 rule in creating programs is ___________________- Write the code first Think before you program Let the compiler find you syntax errors There are no rules just...
Python Please, If possible, please continue with/ use code
already given
File Commands: u/a
Write a function named, file_commands, that
takes the name of a file as a parameter.
The function processes the contents the file as follows:
For file lines that begin with the letter 'a',
calculate & print the integer average of the numbers on the
line.
For file lines that begin with the letter 'u', print
the upper case format for each word following the u.
Sample...
use python IDEL
Please highlight the answer
Problem 2 Dictionary. Read the following code and answer the next five questions about it. book1 = ("Alice":"arts", "Bob": "botany" "Clara": "chemistry", "Dasha": "digital media") book2 = {"Eve": "electronics", "Forest": "finances". "George": "geology", "Harry": "history". "Ivan": "Italian", "Joanna": "Japanese Arts") mybook=0 condition 1 = ? condition2 - ? condition3 = ? for key in book 1.keys(): mybook[key] =book 1.get(key) mybook.update(book 2) #first print statement print (mybook) if condition 1: mybook["Bob"] = "biochemistry" mybook["Eve"]...
use python IDEL
Please highlight the answer
Problem 1 Lists. Read the following code and answer the next five questions about it. X = ? y=? z = ? zodiac = ["cow", "tiger", "rabbit", "dragon", "snake", "horse" "sheep", "monkey", "dog", "chicken", "pig", "rat"] first_group = zodiac[0:x] second_group = zodiac[x:y] third_group - zodiac[y:z] animals = [] for item in first_group: animals.append(item) for item in third_group: animals.append(item) for item in second group: animals.append(item) #first print statement print (animals) i = ? j...
I need help in Python. This is a two step problem So I have the code down, but I am missing some requirements that I am stuck on. Also, I need help verifying the problem is correct.:) 7. Random Number File Writer Write a program that writes a series of random numbers to a file. Each random number should be in the range of 1 through 500. The application should let the user specify how many random numbers the file...