Computer Science, asked by Disai8562, 1 year ago

What is python really? you can (and are encouraged) make comparisons to other technologies in your answer?

Answers

Answered by digi18
0
Lets not dig deep into this technically . I will take basic example so that you can grasp it easily.

Python is an object oriented programming language like other languages what other thing make it different from other programming languages is . It is used for servers side scripting which means it can only be run on our web servers and not on our computer.

To understand it better first you need to know that every web application is divided into two parts:

1) Client side
2) Server side

Client side is accessed by the user it is like where user interact with the website.
For ex = When you see items on Amazon and do interactions like filtering products and adding them to cart and all functionality like this all it is done on client side.Accompalishing this task various technology comes into play
some of them are:

i) Bootstrap, Html,CSS all collectively used for making and designing webpages.

ii) Javascript - It is a client side scripting language unlike python ( which is server side scripting ).It is used for defining users interactions with website like click events and all.

2) Server side - This is the part where all backend operations takes place like when you click on load more products button it processes data on database servers and fetch
relevant data from database and show you on web page.All this task is done by python.

There are many server side scripting languages like Python are PHP, JSP ,Ruby etc.

Hopefully you may get some knowledge out of this.

Thanks
Similar questions