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

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

python

dont use input,print 

use return

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
Transcribed Image Text: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
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 4 steps with 4 images

Blurred answer
Knowledge Booster
ASCII Codes
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