I wanted to try out the permutations function from the itertools module. But I keep getting the following error everytime I try to implement it:
code:
from itertools import permutations
txt=permutations('SKIN')
print(txt)
output:
<itertools.permutations object at 0x7fee48665950>
I tried using the command pip install itertools on my command prompt but I keep getting the error:
ERROR: Could not find a version that satisfies the requirement itertools (from versions: none)
ERROR: No matching distribution found for itertools
How do I install the package?