- 2
What are the advantages and disadvantages of interactive mode in python ?
2 Answers
0
Its useful to begin for understand very basic things, else it would be unuseful
0
ADVANTAGES
1.It is great for single lines or smaller codes
2.if you want to print a statement just type the code and enter
eg. >>>1+1
2
eg.>>>a=10
>>>a
10
DISADVANTAGES
1.it is harder to edit longer programs or even existing program.
2.if we save the program the instructions also gets saved.
Thankyou.