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: [['', Input: 21 1 1 1 '], [' 1 '], [' 1 '], [' נני Output: [[' '], [' '], [' '], [' '], [' '], [' '], [' '], [' '], [' '], [' '], [' '], [''], [''], [' '], [''], [''], [''], [' '], [''], [''], [' ']]
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: [['', Input: 21 1 1 1 '], [' 1 '], [' 1 '], [' נני Output: [[' '], [' '], [' '], [' '], [' '], [' '], [' '], [' '], [' '], [' '], [' '], [''], [''], [' '], [''], [''], [''], [' '], [''], [''], [' ']]
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
Related questions
Question
Instructions for Encode Into A Matrix - Part 1
Write a function create_matrix(row_length, column_length) which takes two integers row_length and column_length as inputs. The function returns a nested list (a few lists inside a list).
For 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 behaves as expected.
Expert Solution
This question has been solved!
Explore an expertly crafted, step-by-step solution for a thorough understanding of key concepts.
Step by step
Solved in 4 steps with 2 images
Knowledge Booster
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.Recommended textbooks for you
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)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
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)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON
Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning
Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education