Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

I have a program that was suppose to do the following: Compute their Cartesian product, AxB of two lists . Each list has no more

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 enter the two list, not have them automatically entered.

def CartesianProduct(A,B): lst = [] for x in A: t = [] t.append(x) for y in B: temp = [] for x in t: temp.append(x) temp.append(y) lst.append(temp) return lst A = [1,2] B = [3,4]

print(CartesianProduct(A,B))

****

What I need: Is for the code above to have the user prompted to enter the two list, not have them automatically entered.

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 Analysis In Microsoft Excel

Authors: Alex Holloway

1st Edition

B0CCCPKTTX, 979-8852388452

More Books

Students also viewed these Databases questions

Question

Explain the factors influencing wage and salary administration.

Answered: 1 week ago

Question

Examine various types of executive compensation plans.

Answered: 1 week ago

Question

1. What is the meaning and definition of banks ?

Answered: 1 week ago

Question

2. What is the meaning and definition of Banking?

Answered: 1 week ago