0
IS PYTHON A COMPILER OR AN INTERPRETER ??
In this sololearn website, when we pick a course and work upon, we notice that the code playground is a compiler....... and not an interpreter...... why it is like that ??
3 Answers
+ 6
Well SL is not a compiler.. It simply takes all the code and inputs and sends it to server where is is somplied and then takes response back to the app
+ 5
Python is first compiled and then interpreted.
https://nedbatchelder.com/blog/201803/is_python_interpreted_or_compiled_yes.html
+ 3
1) Python is an interpreted language, so we need an interpreter to translate it's code
2) sololearn's code playground on the other hand is an IDE (Integrated Development Environment) which uses compiler/interpreter according to the language you are using.