+ 12
Can we use python module in sololearn
Plz tell me as soon as possible
15 Antworten
+ 11
Because I want to make a python program with module
+ 10
But some module is not working
like turtle
+ 10
What are the some module which are available
And how to install module
Simon Sauter
+ 9
Mainly how can we use subprocess module in sololearn
+ 2
Not sure what turtle module does, but I checked and each instance of code is run inside a docker container so if you are trying to do something networking or administration related, it’s possible this is why it isn’t working.
+ 1
why?
+ 1
Haven't tried but if it doesn't work, try using QPython
+ 1
I was just using
from copy import deepcopy
This is working
+ 1
import subprocess
subprocess.call(["ls", "-l"])
Is also working
+ 1
Some modules are available, some can be installed, some won't work.
+ 1
There's a way to use the turtle module. Use the search function to find information on how to do it.
+ 1
I rarely use the code playground, but you should be able to find all the necessary information using the search function.
+ 1
To get a list of all pre-installed modules you can go to the code playground, create a new python document and run this line of code:
help("modules")
0
Yes
- 2