List at least six features in Python that do not exist inC-shell scripting.
Answer
NOTE: I have completed answers for your question along withexplanation. Please check and let me know if you have anyquestions. I will revert back within 24 hours. Thanks for yourpatience.
By default Python has Read Evaluate Print loop which allows totry new codes in the interpreter without writing into a source fileeverytime. This gives lot of flexibility in experimenting anddebugging the code without writing into a separate file tounderstand. Whereas if we want to try out new things we have towrite a c-shell script program to experiment.
Python
OR
OR