I need to create a user with home directory in python. Currently, i am doing this:
adduser --home /test testing
But, this requires some inputs as well. How do i execute such command and give the input in python?
Input is asking password, room number, and etc.
Thank you