Write a function that takes two lists of integers X and Y as input, and computes and writes a table into a file named "question2.txt" as follows: - On each line the computations for an X,Y pair is given - Each such possible pair must exist in the file in the same order of values in X and Y - Next on each line, you provide X+Y, X*Y and X^2 + Y^2, all separated by a comma (and no spaces or other characters must exist). Note that X^2 represents "square of X". For example, given X = [1,3] and Y=[-1,1,0], "question2.txt" should contain the following table: ----- question2.txt ----- 1,-1,0,-1,2 1,1,2,1,2 1,0,1,0,1 3,-1,2,-3,10 3,1,4,3,10 3,0,3,0,9 ------------------------- As you can see, the first line is computed for X=1, Y=-1. The second line is built for X=1, Y=1; and the third line is for X=1, Y=0. It goes on like this, until X=3, Y=0. """ def op2file(X, Y): return # Remove this line to answer this question
program
import os
from os import path
def text2dict(filename):
data_dict={}
if path.exists(filename):
f = open(filename, "r")
data=f.read()
print(data)
for i in data:
if i!='\n':
if i in data_dict:
data_dict[i]=data_dict[i]+1
else:
data_dict[i]=1
return data_dict
filename="C:/Users/user/IR_WORK/text.txt"
dict=text2dict(filename)
print(dict)
output
runfile('C:/Users/user/IR_WORK/chegg.py', wdir='C:/Users/user/IR_WORK')
hello
name
{'h': 1, 'e': 2, 'l': 2, 'o': 1, 'n': 1, 'a': 1, 'm': 1}

pythonComplete the below function that takes the name of two files, inFilename andoutFilename as arguments and reads the text from the inFilename. In this fileeach line contains the Turkish Republic Identity Number (TCNO), name, surnameand telephone number of a person. Your function should sort all personsaccording to their TCNO, write the sorted data into outFilename. If the fileinFilename does not exist, then the function must create an empty file namedoutFilename.For example, if the function is called such asreadText("in.txt", "out.txt")and in.txt...
Write a function that reads a single line of numbers from a file named "question1.txt", and returns the average of the numbers read. For example, if the file is as follows: ----- question1.txt ----- 1 3 5 -2 4 0 6 -2 -3 ------------------------- then the function must return 12/9 = 1.33333 """ def file_average(): return # Remove this line to answer this question
IT PYTHON
QUESTION1 Consider the following Python code, where infile.txt and outfile.txt both exist in the current directory 'z' ) 。1d = open ( ' infile. txt ' , for line in old: new.write (line) new.write') ne«.close () old.close) Which of the following options best describes the purpose or outcome of this code? O A copy of the file infile.txt is made (except in double line spacing) and saved as outfile.txt in the current directory. O A copy of the...
Please write the following code as simple as possible in python: You will need to define a function with four arguments. Here is what I used: > def find_matches(file1.txt, output1.txt, strings, value): file1.txt will contain a list of various strings. The program must copy from the first argument, and it should be written in the second argument (the second file, "output1.txt"). The third and fourth arguments will determine which specific strings will be copied over to the second file. For...
Using python
Question 13 (20 points) Write a function named Linestats that finds the number of consonant and vowel letters on each line of a file and writes those statistics to a corresponding line of a new file, separated by a space. Definitions: A vowel letter is one of a, e, i, o, u, along with the corresponding uppercase letters..A consonant letter is not a vowel letter. The function linestats takes two parameters: 1. inFile, a string, the name of...
Binary trees - C programming; Write a program in C, you must have as input a .txt file (start.txt), and have as output answering questions about the tree. Edges as pairs (x, y), x and y refer to the names of the nodes Input (start.txt): (1,2) (1,3) (2,4) (2,5) (3,6) (3,7) (4,8) Output(output.txt): Is the tree complete? NO What is the weight of the tree? 4 Is it balanced? YES
Binary trees - C programming; Write a program in C, you must have as input a .txt file (start.txt) which represents a binary tree, Edges as pairs (x, y), x and y refer to the names of the nodes , and have as output answering questions about the tree.EX Input (start.txt): (1,2) (1,3) (2,4) (2,5) (3,6) (3,7) (4,8) Output(output.txt): Is the tree complete? YES What is the weight of the tree? 4 Is it balanced? YES
I have a program that was suppose to do the following: Compute their Cartesian product, AxB of two lists. Each list has no more than 10 numbers. For example, given the two input lists: A = [1,2] B = [3,4] then the Cartesian product output should be: AxB = [(1,3),(1,4),(2,3),(2,4)] *********** The code that I have is this: (Thanks to other great answerers like you all) What I need: Is for the code below to have the user prompted to...
Python Basic Lists, File IO, Exception Handling 1. Call createTable() to: Read in the data from each of the input files (in order from scores1.txt to scores5.txt) and store the data in table. The table is a list of lists, where the scores of each input file is a column of data of the table. By the end of the function, the table should have 5 columns of numbers, each column is from one input file. Here is the first...
I'm a bit confused on how to get this program to run right. Here are the directions: Part 1: Write a Python function called reduceWhitespace that is given a string line and returns the line with all extra whitespace characters between the words removed. For example, ‘This line has extra space characters ‘ ‘This line has extra space characters’ Function name: reduceWhitespace Number of parameters: one string line Return value: one string line The main file should handle the...