top of page
Writer's pictureRajesh Singh

What is Python Programming Language?

Updated: Feb 16, 2022


Python is a well-liked programming language. It was developed by Guido van Rossum in 1991. It is used for web development (server-side), software development, mathematics, system scripting. Python was designed for readability, and has some similarities to the English language with manipulate from mathematics. It relies on serration, using whitespace, to define scope; such as the scope of loops, functions and classes. Other programming languages often use curly-brackets for this purpose. It uses new lines to complete a command, as opposed to other programming languages which often use semicolons or parentheses so it is simple from another language. It has simple syntax and similar to the English language and runs on an interpreter system



What can Python do?

  • Python can be used on a server to create web applications.

  • Python can be used alongside software to create workflows.

  • Python can connect to database systems. It can also read and modify files.

  • Python can be used to handle big data and perform complex mathematics.

  • Python can be used for rapid prototyping, or for production-ready software development.


Why Python?

  • It works on different platforms like as Windows, Mac, Linux, Raspberry Pi, etc.

  • The syntax of python is simple and similar to the English language.

  • Python has syntax for program with fewer lines comparison as other programming languages.

  • It runs on an interpreter system. This means that prototyping can be very quick.

  • It can be treated in a technical way, an object-orientated way or a functional way.


27 views0 comments

Recent Posts

See All

Files MCQ in Python

File Processing MCQ Q1. Which function writes a list of lines in File? A.      Writelines() B.      Write() C.      Tell() D.      All of...

Python List MCQ Questions

Q1. What is output of below python code? dict= {1:'1', 2:'2', 3:'3'} del dict[1] dict[1] = '10' del dict[2] print (len(dict)) A. 1 B. 2...

Python NUMPY MCQ Questions

Python NumPy Chapter MCQ: 1. What will be print? Import numpy as np a = np. array([1,2,3,5,8]) b = np. array([0,3,4,2,1]) c = a+b c = c*a...

Comentários


bottom of page