InterviewSolution
| 1. |
What are the features of python |
|
Answer» n is a high level language. It is a free andopen source language.• It is an INTERPRETED language, as Python programsare executed by an interpreter.• Python programs are easy to understand asthey have a clearly defined syntax and relativelysimple structure.• Python is case-sensitive. For example, NUMBERand number are not same in Python.• Python is portable and platform INDEPENDENT,means it can run on various operating systems andhardware platforms.• Python has a rich library of predefined functions.• Python is also helpful in WEB development. Manypopular web services and applications are builtusing Python.• Python USES indentation for BLOCKS andnested blocks. |
|