According to the this random strings can be generated importing rstr module.
import rstr
rstr.rstr('ABC')
but when I compile this following error is given?
ImportError: No module named rstr
I'm using python 3.3. What could be the reason?
According to the this random strings can be generated importing rstr module.
import rstr
rstr.rstr('ABC')
but when I compile this following error is given?
ImportError: No module named rstr
I'm using python 3.3. What could be the reason?
You need to download the module and then make sure your python script can find it.
The rstr package should now be available on PyPI. You can install it by running pip install rstr
If you need more help, there's some information about using pip here.
rstr