Complete the get_2_dimensional_list() function that takes two parameters: 1. An integer num_rows. 2. An integer num_columns. The function should return a 20 list with num_rows rows and num_columns columns. Each element is set to a random value between 1 and 99 included. If both parameters num_rows and num_columns are set 0, the function returns an empty list You MUST use a for..in...range loop to create the 2D list. You do not need to import the random module as it has already been done for you. Some examples of the function being called are shown below. For example: Test random.seed(15) num_columns - 5 matrix get 2 dimensional_list(num_rows, num_columns) print(matrix) random.seed (132) num_rows=2 num_columns 2 matrix get 2 dimensional_list(num_rows, num_columns) print(matrix) Result [[27, 2, 67, 95, 5], [21, 31, 3, 8, 86]] [[53, 20], [53, 8]]

C++ Programming: From Problem Analysis to Program Design
8th Edition
ISBN:9781337102087
Author:D. S. Malik
Publisher:D. S. Malik
Chapter17: Linked Lists
Section: Chapter Questions
Problem 18PE
icon
Related questions
Question

Python

Complete the get_2_dimensional_list() function that takes two parameters:
1. An integer num_rows.
2. An integer num_columns.
The function should return a 2D list with num_rows rows and num_columns columns. Each element is set to a random value between 1 and 99
included.
If both parameters num_rows and num_columns are set 0, the function returns an empty list.
You MUST use a for...in..range loop to create the 2D list. You do not need to import the random module as it has already been done for you.
Some examples of the function being called are shown below.
For example:
Test
random.seed (15)
num_rows - 2
num_columns 5
matrix = get_2_dimensional_list(num_rows, num_columns)
print(matrix)
random.seed (132)
num_rows - 2
num_columns 2
matrix = get_2_dimensional_list(num_rows, num_columns)
print(matrix)
Result
[[27, 2, 67, 95, 5], [21, 31, 3, 8, 8811
[[53, 20], [53, 8]]
Transcribed Image Text:Complete the get_2_dimensional_list() function that takes two parameters: 1. An integer num_rows. 2. An integer num_columns. The function should return a 2D list with num_rows rows and num_columns columns. Each element is set to a random value between 1 and 99 included. If both parameters num_rows and num_columns are set 0, the function returns an empty list. You MUST use a for...in..range loop to create the 2D list. You do not need to import the random module as it has already been done for you. Some examples of the function being called are shown below. For example: Test random.seed (15) num_rows - 2 num_columns 5 matrix = get_2_dimensional_list(num_rows, num_columns) print(matrix) random.seed (132) num_rows - 2 num_columns 2 matrix = get_2_dimensional_list(num_rows, num_columns) print(matrix) Result [[27, 2, 67, 95, 5], [21, 31, 3, 8, 8811 [[53, 20], [53, 8]]
Expert Solution
steps

Step by step

Solved in 4 steps with 2 images

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
C++ Programming: From Problem Analysis to Program…
C++ Programming: From Problem Analysis to Program…
Computer Science
ISBN:
9781337102087
Author:
D. S. Malik
Publisher:
Cengage Learning