Chemics – Python package for chemical engineering

A Python package for chemical engineering. Contribute to wigging/chemics development by creating an account on GitHub. Read more

Similar

From Python to Numpy

There is already a fair number of book about numpy (see Bibliography) and a legitimate question is to wonder if another book is really necessary. As you may have guessed by reading these lines, my personal answer is yes, mostly because I think there's roo...

Read more »

Python: default argument blunders

A few minutes ago a friend sent me the following code, and told me its misbehaving: def foo(l=[]): l.append("hello!") print(l) foo() foo() Instead of printing ["hello"] twice, it printed ["hello", "hello"]. Any ideas why? what's going on? I'll... (more…)

Read more »