Notes On Python
Notes On Python
3. Python includes a large library of built-in functions that can be used to tackle a wide range of
problems.
4. Python features an interactive mode that enables interactive testing and debugging of code snippets.
5. Python runs on a wide range of operating systems and hardware platforms, with the same user
interface across all of them.
6. We can use the Python interpreter to add low-level models. These models allow programmers to
make their tools more efficient by customizing them.
7. Python includes interfaces to all major open source and commercial databases, as well as a more
structured and robust framework and support for big systems than shell scripting.
9. What is Variable?
Answer – In a computer language, a variable is a memory area where a value is assign. A variable in
Python is created when a value is assigned to it. In Python, declaring a variable does not necessitate any
additional commands.
10. What are the different rules for declaring the Variable?
Answer – The rules for declaring variable are –
1. A number cannot be used as the first character in the variable name. Only a character or an
underscore can be used as the first character.
2. Python variables are case sensitive.
3. Only alpha-numeric characters and underscores are allowed.
4. There are no special characters permitted.