roxxhub

5 best backend programming languages

The processes involved in functioning of a website can be divided into 2 parts – The frontend and the backend. Where frontend refers to client side interface i.e. the webpages a user interacts with, the backend refers to server side processes. Example :- data stored, structure of the website etc. Read more about what backend … Read more

Python for loop

A ‘for’ loop is command which is used to iterate over a sequence(ex. list, tuple, dictionary, set, even a string) multiple times. Lets take a look at the syntaxes of python for loop Looping through a list thus giving us the output here the ‘for’ loop goes through each element of the list (element refers … Read more