Write a function definition which has two parameters, both lists. The function is supposed to return the “product” of the two parameters.  The result which is returned is a new list whose elements are the products of corresponding elements from each list. If the lists are not the same size, return an empty list. Assume the elements are numeric.  Use ONE return statement.  This function does no input or output.   Example:  times_list( [2, 4, 5],  [3, 4, 9]) returns [6, 16, 45].   Example:  times_list( [3, 15],  [1, 2, 3]) returns [ ]

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

Need done in python, picture of the homework question is provided.

 

Answer any ONE (highlight your choice) of the following two problems:

 

Problem A

 

Write a function definition which has two parameters, both lists. The function is supposed to return the “product” of the two parameters.  The result which is returned is a new list whose elements are the products of corresponding elements from each list. If the lists are not the same size, return an empty list. Assume the elements are numeric.  Use ONE return statement.  This function does no input or output.

 

Example:  times_list( [2, 4, 5],  [3, 4, 9]) returns [6, 16, 45].  

Example:  times_list( [3, 15],  [1, 2, 3]) returns [ ]

 

 

 

 

 

 

 

 

Problem B

 

Write a program that plays a number-guessing game with the user. The program first generates a random number in the range 1 through 50, inclusive. The user then enters a guess.  If the user matches the random number, the game is over, and shows how many guesses it took.   If the number the user entered is less than the random number, the program says “Too low”. Otherwise, if the user input is greater than the random number, the program says “Too high”.  The program keeps a count of how many guesses the user takes to correctly guess the number and reports it at the end of the game.

 

Sample run:

What's your guess?  30

Too high

What's your guess?  15

Too low

What's your guess?  22

Too high

What's your guess?  18

Too high

What's your guess?  17

Game Over

It took you 5 guesses.

 

 

ANS:

Answer any ONE (highlight your choice) of the following two problems:
Problem A
Write a function definition which has two parameters, both lists. The function is supposed to return the
"product" of the two parameters. The result which is returned is a new list whose elements are the products
of corresponding elements from each list. If the lists are not the same size, return an empty list. Assume the
elements are numeric. Use ONE return statement. This function does no input or output.
Example: times.Jist(12, 4, 5], [3, 4, 9]) returns [6, 16, 45].
Example: times list [3, 15], [1, 2, 3]) returns []
Problem B
Write a program that plays a number-guessing game with the user. The program first generates a random
number in the range 1 through 50, inclusive. The user then enters a guess. If the user matches the random
number, the game is over, and shows how many guesses it took. If the number the user entered is less than
the random number, the program says "Too low". Otherwise, if the user input is greater than the random
number, the program says "Too high". The program keeps a count of how many guesses the user takes to
correctly guess the number and reports it at the end of the game.
Sample run:
What's your guess? 30
Too high
4
What's your guess? 15
Too low
What's your guess? 22
Too high
What's your guess? 18
Too high
What's your guess? 17
Game Over
It took you 5 guesses.
ANS:
Transcribed Image Text:Answer any ONE (highlight your choice) of the following two problems: Problem A Write a function definition which has two parameters, both lists. The function is supposed to return the "product" of the two parameters. The result which is returned is a new list whose elements are the products of corresponding elements from each list. If the lists are not the same size, return an empty list. Assume the elements are numeric. Use ONE return statement. This function does no input or output. Example: times.Jist(12, 4, 5], [3, 4, 9]) returns [6, 16, 45]. Example: times list [3, 15], [1, 2, 3]) returns [] Problem B Write a program that plays a number-guessing game with the user. The program first generates a random number in the range 1 through 50, inclusive. The user then enters a guess. If the user matches the random number, the game is over, and shows how many guesses it took. If the number the user entered is less than the random number, the program says "Too low". Otherwise, if the user input is greater than the random number, the program says "Too high". The program keeps a count of how many guesses the user takes to correctly guess the number and reports it at the end of the game. Sample run: What's your guess? 30 Too high 4 What's your guess? 15 Too low What's your guess? 22 Too high What's your guess? 18 Too high What's your guess? 17 Game Over It took you 5 guesses. ANS:
Expert Solution
steps

Step by step

Solved in 2 steps

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