+ 3
Which third-party modules we can import in Python at SL platform?
I have seen that we can import numpy module here, but can I get the list which are the other 3rd party modules we can import here?
6 Antworten
+ 7
This should output the list of modules available on Sololearn:
https://code.sololearn.com/c071JeXy6LcW/?ref=app
+ 8
Zoetic Zeel ,Kuba Siekierzyński
Thanks, very useful !
+ 2
Kuba Siekierzyński got a question: why isn't this code working?
( found this code snippet on stackoverflow in connection with the below_mentioned question )
https://code.sololearn.com/c8ELExDgEuk3/?ref=app
Is there any other method to output n ( preferably >600 ) digits after decimal point of pi without making use of external module imports?
+ 1
Kuba Siekierzyński Thank you for help..😊
+ 1
Rahul George From Answer given by Kuba Siekierzyński to my question, It is clear that there is no module installed on SL platform named 'mpmath'. You should try to install it in your pc then try there
If you have pip installed, run following command from console in pc without quotes
"pip install mpmath"
otherwise download source package, extract it and in that folder open console and run command
"python setup.py install"
+ 1
Zoetic Zeel I'd noticed that . thanks for mentioning!