InterviewSolution
| 1. |
What will be the result of the following Python statement: type(5/7) |
|
Answer» ing result - PythonBefore we predict the output of the given Program, let's first KNOW about that what is Python and what is programming.What is Python?Python is a powerful high-level, object-oriented programming language. It was created by Guido van Rossum. It was launched on 1991. It can connect to the database system, it can also read and modify files. Python works on different PLATFORMS like, Raspberry Pi, Linux, Mac, Windows and many more platforms.What is Programming?Programming means to create or develop a software which is called a program that contains the instructions to TELL a computer what to do.The OutputThe output of the given python program will be as follows: |
|