Listing Features of Python which can not be seen in JAVA:
- Python variables do not need explicit declaration to reserve memory space. The declaration happens automatically when you assign a value to a variable
- A group of individual statements, which make a single code block are called suites in Python.
- Python has five standard data types: Numbers, String, List, Tuple, Dictionary
- You can delete a single object or multiple objects by using the del statement
- The asterisk (*) is the repetition operator.
- Python support backward indexes in the list.
- We can use the "else" statement with the "for/while" loop.
- The pass statement in Python is used when a statement is required syntactically but you do not want any command or code to execute. The pass statement is a null operation.
- We can use the lambda keyword to create small anonymous functions.
- Dynamic Language for example - one variable can store any type of data during runtime.
Good going Harshit...keep it up!