(String operators)
(a) Suppose you want to print a line full of '#' characters. For simplicity, let’s say that a line can have only 80 characters. One way is to create a long string to be printed. How would you do it more elegantly in Python using the plus operation (+) of strings?
(b) Suppose you want to print a column full of '#' characters. For simplicity, let’s say that a column could have only 30 characters. Similar to (a), how would you do it more elegantly in Python using the mulitply operation (*) of strings? Hint: Use the
newlinecharacter (‘\n’).
We need at least 10 more requests to produce the solution.
0 / 10 have requested this problem solution
The more requests, the faster the answer.