0
Programing
Can some one explain what are differences between shell ide terminal and editor
3 Respostas
+ 1
IDLE is the integrated development environment (IDE) provided with Python. An IDE combines a program editor and a language environment as a convenience to the programmer. Using IDLE is not a requirement for using Python.
Python Terminal (IDLE) is where you write your program and execute it, and Python Shell is where you run your program.
0
Thanks alot .. And You mean actually a terminal is actually a language environment... And if im not wrong shell is the shell is where your codes are executed.. Yes?
0
This is better explained here https://superuser.com/a/144668 even though it's for linux, it applies to python.