3
votes
How to do relative imports in Python?
Why you even need this? Why you just do not import it as
from app.sub2 import mod2
…
2
votes
In Python how do I sort a list of dictionaries by values of the dictionary?
You have to implement your own comparison function that will compare the dictionaries by values of name keys. See Sorting Mini-HOW …
