Python Taskbook Level 10.1
Make a function that takes a singular English noun as a parameter and returns it in the plural.
The text with punctuation marks is given:
'aaa bbb, ccc. Xxx - eee bbb, kkk!'
Get a list of words from such text.
Given two numbers, output to the console the process of multiplying these numbers in a column, like in school.
Given an arbitrary two-dimensional list:
[
[11, 12, 13],
[21, 22, 23],
[31, 32, 33],
]
Write some code that will add another row to the list, filled with random values:
[
[11, 12, 13],
[21, 22, 23],
[31, 32, 33],
[41, 42, 43],
]