Basic Programming in Python - Part 4
Install a Module.
You might have heard of package managers. We have one for python and it is pip. Any third-party module that you want to use in your programs, you could use the following command:
pip install numpy
this would install numpy in your pr...
shravaniroy.in2 min read