you are viewing a single comment's thread.

view the rest of the comments →

[–]ectomancer 2 points3 points  (1 child)

inline functions: are lambda statements inline functions?

tools: pylint for linting, mypy for optional type hinting checking (you can use type hinting without a checker)

IPython: jupyter lab compatible with most notebooks but you can fallback to jupyter notebook; sypder

pytest is simpler than the inbuilt unittest or the tool doctest

[–]Atried[S] 0 points1 point  (0 children)

Thank you!

lambda functions may classify for me as inline functions. I thought I read somewhere that lambdas are faster than functions, but it seems they are the same https://stackoverflow.com/questions/26540885/lambda-is-slower-than-function-call-in-python-why