Python Interpreter: Difference between revisions

From GM-RKB
Jump to navigation Jump to search
No edit summary
No edit summary
 
Line 1: Line 1:
A [[Python Interpreter]] is a [[dynamic interpreter]] that interprets [[Python code]].
A [[Python Interpreter]] is a [[dynamic interpreter]] that interprets [[Python code]].
* <B>Context:</B>
* <B>Context:</B>
** It can (typically) include built-in modules for performing tasks like file I/O, networking, and data manipulation.
** It can include built-in [[Python Module]]s.
** It can (typically) execute [[Python script]]s by interpreting the code line by line at runtime.
** It can execute [[Python script]]s by interpreting the code line by line at runtime.
** It can be invoked in an interactive mode via the [[Python Shell]].
** It can be invoked in an interactive mode via the [[Python Shell]].
** ...
** ...

Latest revision as of 04:17, 26 August 2024

A Python Interpreter is a dynamic interpreter that interprets Python code.



References

2012

  • https://docs.python.org/2/tutorial/interpreter.html
    • The Python interpreter is usually installed as /usr/local/bin/python on those machines where it is available; putting /usr/local/bin in your Unix shell’s search path makes it possible to start it by typing the command ...