a couple of suggestions after reading the lesson #391
Comments
As I understand it, the Python lessons in Software Carpentry are trying to teach basic programming skills and concepts with Python as a vehicle for the instruction. Software Carpentry is explicitly not trying to teach Python. The various import styles show above are very Python specific and likely don't belong in the Software Carpentry lessons. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
On one occasion the lesson mentions aliasing a package during import as in
import numpy as np
Perhaps it's worth mentioning the construct
from ... import ...
which is also very oftenused in scientific software and warn against using
from ... import *
.While reading the section "Analyzing Patient data" I thought a call to the matplotlib
colorbar()
function after theimshow()
call would be useful.The text was updated successfully, but these errors were encountered: