Features of Python Programming Language
1. Python is Interpreted. Python is processed at the runtime by the interpreter. You do not need to compile your program before executing it. The interpreter reads code line by line. The interpreter directly executes the code by converting it into an intermediate code usually called bytes code. 2. Python is platform independent / portable …