Artturi Jalli

I'm an entrepreneur and a blogger from Finland. My goal is to make coding and tech easier for you with comprehensive guides and reviews.

eval in Python

Python eval() Function

In Python, the built-in eval() function evaluates an expression passed as a string argument to it. For example: The eval() function takes the string argument, converts it into a Python expression, and runs it. The above code works exactly like this piece of traditional Python code: The eval() function can be useful in many ways.

Python eval() Function Read More »

Floor division in Python

Python Floor Division — A Complete Guide to the // Operator

In Python, the double-backslash operator (//) is the floor division operator. Floor division means dividing and rounding down to the nearest integer. For example: The physical interpretation of the floor division is about sharing quantities evenly. For example, given 7 apples and 3 eaters, how many full apples does each person get? The answer is

Python Floor Division — A Complete Guide to the // Operator Read More »