we will consider the nested list to contain the same number of elements in all of the inner lists thus making this sort of like a matrix. Hence, we will also use the row and column notation to represent matrices. •The outer nested list contains a list of length row_length and each element of this list is itself a list of length column_length. •The inner lists contain strings (a total of column_length strings), all of which are single space characters(' '). Check the assert statements and input/output examples to understand further. Both row_length and column_length will always be non-negative integers. You can use the assert statements to test that your function .

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

Tbr this lab, we will consider the nested list to contain the same number of elements in all of the inner lists thus making this sort of like a matrix. Hence, we will also use the row and column notation to represent matrices. •The outer nested list contains a list of length row_length and each element of this list is itself a list of length column_length. •The inner lists contain strings (a total of column_length strings), all of which are single space characters(' '). Check the assert statements and input/output examples to understand further. Both row_length and column_length will always be non-negative integers. You can use the assert statements to test that your function . 

 

1 def create_matrix(...):
2
The function expects two integers `row_length` and `column_length`
as input and returns a matrix of dimension `row_length x `column_length`
which contains space characters(`' `)
||||||
3
4
5
6
7
8
9 if _name__ == '__main__':
10
11
12
13
14
15
16
17
18
19
#TODO: Complete this function
row = # TODO: Take the input as an integer from user
column = ... #TODO: Take the input as an integer from user
#Call the function to get the matrix and print it
...
[C'
assert create_matrix(2, 2)
assert create_matrix(2, 3) CC'
assert create_matrix(7, 5)
assert create_matrix(8, 2)
assert create_matrix(0, 19)
assert create_matrix(5, 0) [],[],
[C'
[C'',
==
==
==
==
==
==
"
'], ['',' ']] # 2 rows, 2 columns
'], [' ',
FF 1
**
1
>
T
']] #2 rows, 3 columns
...
1 T
1
''],
'], [' ',
''], ['', ''], ['', '], ['',
"
1
1
'], [''
"'), c'', '], ['', ''], ['',
□, □, □]]
"
1
"
TTI
1
'],
Transcribed Image Text:1 def create_matrix(...): 2 The function expects two integers `row_length` and `column_length` as input and returns a matrix of dimension `row_length x `column_length` which contains space characters(`' `) |||||| 3 4 5 6 7 8 9 if _name__ == '__main__': 10 11 12 13 14 15 16 17 18 19 #TODO: Complete this function row = # TODO: Take the input as an integer from user column = ... #TODO: Take the input as an integer from user #Call the function to get the matrix and print it ... [C' assert create_matrix(2, 2) assert create_matrix(2, 3) CC' assert create_matrix(7, 5) assert create_matrix(8, 2) assert create_matrix(0, 19) assert create_matrix(5, 0) [],[], [C' [C'', == == == == == == " '], ['',' ']] # 2 rows, 2 columns '], [' ', FF 1 ** 1 > T ']] #2 rows, 3 columns ... 1 T 1 ''], '], [' ', ''], ['', ''], ['', '], ['', " 1 1 '], ['' "'), c'', '], ['', ''], ['', □, □, □]] " 1 " TTI 1 '],
For the main program, you should take the row and column lengths as input from the user and pass them as arguments into the function.
You should then print the return value of the function.
Example
Input:
7
5
Output:
[['
1
Input:
21
1
I
1
'
1
1
'], [' '
'], ['
[נ' '] ,[' '] ,[' '] ,[' '] ,[' '] ,[' '] ,[' ']
"
']]
Output:
[[' '], [' '], [' '], [' '], [' '], [' '], [' '], [''], [''], [''], [''], [''], [' '], [''],
Transcribed Image Text:For the main program, you should take the row and column lengths as input from the user and pass them as arguments into the function. You should then print the return value of the function. Example Input: 7 5 Output: [[' 1 Input: 21 1 I 1 ' 1 1 '], [' ' '], [' [נ' '] ,[' '] ,[' '] ,[' '] ,[' '] ,[' '] ,[' '] " ']] Output: [[' '], [' '], [' '], [' '], [' '], [' '], [' '], [''], [''], [''], [''], [''], [' '], [''],
Expert Solution
steps

Step by step

Solved in 3 steps with 1 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
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