Basic explanation of python functions

what is the purpose of having the arg1, arg2 in the parenthesis next to it? In this case, arg1 and arg2 are called arguments. Arguments allow functions to receive inputs it’s expected to use in order to perform a task. The inputs are provided by the callers. For example, in school math, you may’ve already … Read more

ImportError: No module named pandas

You’re missing a few (not terribly clear) steps. Pandas is distributed through pip as a wheel, which means you need to do: You’re probably going to run into other issues after this – it looks like you’re installing on Windows which isn’t the most friendly of targets for NumPy, SciPy, and Pandas. Alternatively, you could pickup a binary installer … Read more