Loading collection data...
Collections are a way for you to organize kata so that you can create your own training routines. Every collection you create is public and automatically sharable with other warriors. After you have added a few kata to a collection you and others can train on the kata contained within the collection.
Get started now by creating a new collection.
Restrictions on some/all libraries is required in Python.
suggestion part:
leste = tuple(random.sample(words, random.randint(2, 6)))
-> here, you could keeprandom.choices
, because one person could offer the same gift several times(I didn't take a look at the description yet)
Issue part:
The number of offered gifts (ie. the number of tuples given as arguments) must also be random. To accomodate this with the function calls, just replace
func(lst, lst2[0], lst2[1], lst2[2], lst2[3], lst2[4], lst2[5], lst2[6], lst2[7], lst2[8], lst2[9])
withfunc(lst, *lst2)
(but with proper variable names... ;) )