Python shell | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

Python shell

how to use python shell, and what is the usefulness.

10th May 2021, 6:28 PM
Micheal Alfred
2 Answers
+ 8
Python provides a Python Shell, which is used to execute a single Python command and display the result. It is also known as REPL (Read, Evaluate, Print, Loop), where it reads the command, evaluates the command, prints the result, and loop it back to read the command again.
10th May 2021, 6:36 PM
Aysha
Aysha - avatar
+ 1
You can not save scripts that you run in python shell as file,it is used just once but with code editor you can save entire program as python file to be reused anytime.
10th May 2021, 7:11 PM
HBhZ_C
HBhZ_C - avatar