Python Taskbook Level 10.9
Given a text. Write a program that will format this text so that there are no more than 70
characters in a line of text, and then there is a line break. The words should not be broken.
Given an arbitrary two-dimensional list:
[
[11, 12, 13],
[21, 22, 23],
[31, 32, 33],
]
Another one-dimensional list is given:
[
14, 24, 34
]
Write some code that will add our one-dimensional list as a column of our two-dimensional list:
[
[11, 12, 13, 14],
[21, 22, 23, 24],
[31, 32, 33, 34],
]