Python
Python Introduction
1) About Python
- Python is a high level language. It can be processed at runtime by interpreter and can be interactive. It is also object oriented. It can be used as a scripting language. It can be integrated very easily with Java, C, C++ etc. It can run on various hardware platforms and so is portable. It can connect to different databases. It supports GUI. It is scalable. It can handle big data.
2) Python help can be obtained as shown below
- help(‘keywords’)
- help(‘symbols’)
- help(‘topics’)
3) Python builtins can be displayed as shown below
import builtins
print(dir(builtins))