Python operators

An operator in python is a symbol or a keyword that helps to perform calculations, perform comparisons on the variables, relate between results and helps to store the calculation/comparison result within another variable. For example: first=7 second=8 result=first*second Here, first, second, result are the variables, in which first stores value 7, second stores value 8.Continue reading “Python operators”