93 of 100 menu

Python Taskbook Level 10.3

You are given a tuple of six digits. Check if you can assemble a lucky ticket from these digits.

Write a code that will generate a password of a given size. The password must contain a small and large letter, a number and some special symbol.

Given two numbers, display the process of dividing these numbers in a column, as in school.

Given a string containing two numbers and a mathematical operation between them:

'10 + 20'

Write code that will calculate the result of the written mathematical operation.

Given an arbitrary two-dimensional list:

[ [11, 12, 13], [21, 22, 23], [31, 32, 33], ]

Write some code that will add another row and another column to it, filled with random values:

[ [11, 12, 13, 14], [21, 22, 23, 24], [31, 32, 33, 34], [41, 42, 43, 44], ]
enru