For example :
lst = ['1234','2341','123']
And should be:
lst = ['1234', '2341'] '123' - did not fit because there are less than four characters
For example :
lst = ['1234','2341','123']
And should be:
lst = ['1234', '2341'] '123' - did not fit because there are less than four characters
Source: https://ru.stackoverflow.com/questions/590569/
All Articles