Calculate Permutations and Combinations of Elements Using Python
Posted on
Word count in article:
848
Reading time ≈
3 mins.
itertools.combinations
Generates all possible combinations of elements of a specified length:
C(5,2)
1 | import itertools |
The output is as follows:
Commonly Used Plotting Functions in the Python-OpenCV Library
Posted on
Edited on
Word count in article:
806
Reading time ≈
3 mins.
Hexo NexT Theme Configuration
Posted on
Edited on
Word count in article:
933
Reading time ≈
3 mins.
How to Build a Personal Website with Github and Hexo
Posted on
Edited on
Word count in article:
241
Reading time ≈
1 mins.
Install Node.js and Git
First, you'll need to install Node.js and Git, download and install the Node.js from [here](Node.js — Run JavaScript Everywhere (nodejs.org)).
You can check if the Node.js and Git installation are successful by typing these:
1 | git version |