FARHANA SHAIK
FARHANA SHAIK

Reputation: 73

what is the difference between python shell and IDLE?

As python has two ways to code one from python command and one from python shell what is the difference between these two?

Upvotes: 5

Views: 18248

Answers (1)

jihan1008
jihan1008

Reputation: 360

Python Shell is a command line tool that starts up the python interpreter. You can test simple programs and also write some short programs. However, in order to write a more complexed python program you need an editor. IDLE, on the other hand, has combined the above two needs and bundled them as a package. IDLE consists of Python Shell, and Text editor that supports highlights for python grammar and etc.

Upvotes: 11

Related Questions