Index
- built_in_functions
- Python abs()
- Python all()
- Python any()
- Python ascii()
- Python bin()
- Python bool()
- Python bytearray()
- Python bytes()
- Python callable()
- Python chr()
- Python classmethod()
- Python compile()
- Python complex()
- Python delattr()
- Python dict()
- Python dir()
- Python divmod()
- Python enumerate()
- Python eval()
- Python exec()
- Python filter()
- Python float()
- Python format()
- Python frozenset()
- Python getattr()
- Python globals()
- Python hasattr()
- Python hash()
- Python help()
- Python hex()
- Python id()
- Python input()
- Python int()
- Python isinstance()
- Python issubclass()
- Python iter()
- Python len()
- Python list()
- Python locals()
- Python map()
- Python max()
- Python memoryview()
- Python min()
- Python next()
- Python object()
- Python oct()
- Python open()
- Python ord()
- Python pow()
- Python print()
- Python property()
- Python range()
- Python repr()
- Python reversed()
- Python round()
- Python set()
- Python setattr()
- Python slice()
- Python sorted()
- Python staticmethod()
- Python str()
- Python sum()
- Python super()
- Python tuple() Function
- Python type()
- Python vars()
- Python zip()
- Python __import__()
- python1compute
- Python Program to Find Hash of File
- Python Program to Find the Size (Resolution) of a Image
- Python Program to Merge Mails
- Python Program to Count the Number of Each Vowel - Source Code: Using a list and a dictionary comprehension
- Python Program to Count the Number of Each Vowel - Source Code: Using Dictionary
- Python Program to Illustrate Different Set Operations
- Python Program to Sort Words in Alphabetic Order
- Python Program to Remove Punctuations From a String
- Python Program to Multiply Two Matrices - Matrix Multiplication Using Nested List Comprehension
- Python Program to Multiply Two Matrices - Source Code: Matrix Multiplication using Nested Loop
- Python Program to Transpose a Matrix - Matrix Transpose using Nested List Comprehension
- Python Program to Transpose a Matrix - Matrix Transpose using Nested Loop
- Python Program to Add Two Matrices - Source Code: Matrix Addition using Nested List Comprehension
- Python Program to Check Whether a String is Palindrome or Not
- Python Program to Add Two Matrices - Source code: Matrix Addition using Nested Loop
- Python Program to Convert Decimal to Binary Using Recursion
- Python Program to Find Factorial of Number Using Recursion
- Python Program to Find Sum of Natural Numbers Using Recursion
- Python Program to Display Fibonacci Sequence Using Recursion
- Python Program to Display Calendar
- Python Program to Shuffle Deck of Cards
- Python Program to Make a Simple Calculator
- Python Program to Find Factors of Number
- Python Program to Find LCM - Without using GCD function
- Python Program to Find HCF or GCD - Source Code: Using Euclidean Algorithm
- Python Program to Find LCM - Source Code: Using GCD function
- Python Program to Find HCF or GCD - Source Code: Using Loops
- Python Program to Find ASCII Value of Character
- Python Program to Convert Decimal to Binary, Octal and Hexadecimal
- Python Program to Find Numbers Divisible by Another Number
- Python Program To Display Powers of 2 Using Anonymous Function
- Python Program to Find the Sum of Natural Numbers
- Python Program to Find Armstrong Number in an Interval
- Python Program to Check Armstrong Number - Source Code: Check Armstrong number of n digits
- Python Program to Check Armstrong Number - Source Code: Check Armstrong number (for 3 digits)
- Python Program to Print the Fibonacci sequence
- Python Program to Display the multiplication Table
- Python Program to Find the Factorial of a Number
- Python Program to Print all Prime Numbers in an Interval
- Python Program to Find the Largest Among Three Numbers
- Python Program to Check Prime Number
- Python Program to Check Leap Year
- Python Program to Check if a Number is Odd or Even
- Python Program to Check if a Number is Positive, Negative or 0 Source Code: Using Nested if
- Python Program to Check if a Number is Positive, Negative or 0 Source Code: Using if...elif...else
- Python Program to Convert Celsius To Fahrenheit
- Python Program to Generate a Random Number
- Python Program to Convert Kilometers to Miles
- Python Program to Swap Two Variables Source Code: Without Using Temporary Variable
- Python Program to Swap Two Variables Source Code: Using temporary variable
- Python Program to Solve Quadratic Equation
- Python Program to Calculate the Area of a Triangle
- Python Program to Find the Square Root Source code: For real or complex numbers using cmath module
- Python Program to Find the Square Root Source Code: For positive numbers using exponent **
- Python Program to Add Two Numbers By One Line
- Python Program to Add Two Numbers Source Code: Add Two Numbers Provided by The User
- Python Program to Add Two Numbers
- Python Program to Print Hello world!
- python2based
Description eval()
Python eval()
The eval() method parses the expression passed to this method and runs python expression (code) within the program.
In simple terms, the eval() method runs the python code (which is passed as an argument) within the program.
The syntax of eval() is:
eval(expression, globals=None, locals=None)
eval() Parameters
The eval() takes three parameters:
• expression - this string as parsed and evaluated as a Python expression
• globals (optional) - a dictionary
• locals (optional)- a mapping object. Dictionary is the standard and commonly used mapping type in Python.
The use of globals and locals will be discussed later in this article.
Return Value from eval()
The eval() method returns the result evaluated from the expression.
Example 1: How eval() works in Python?
------------------------------------------------------------------------------------------------------
x = 1
print(eval('x + 1'))
------------------------------------------------------------------------------------------------------
When you run the program, the output will be:
2
Here, the eval() evaluates the expression
x + 1
and print it.Example 2: Practical Example to Demonstrate Use of eval()
--------------------------------------------------------------------------------------------------------
# Perimeter of Square
def calculatePerimeter(l):
return 4*l
# Area of Square
def calculateArea(l):
return l*1
property = input("Type a function: ")
for l in range(1, 5):
if (property == 'calculatePerimeter(l)'):
print("If length is ", l , ", Perimeter = ", eval(property))
elif (property == 'calculateArea(l)'):
print("If length is ", l , ", Area = ", eval(property))
else:
print('Wrong Function')
break
----------------------------------------------------------------------------------------------------------------
The output of the above program will be:
Type a function: calculateArea(l)
If length is 1 , Area = 1
If length is 2 , Area = 2
If length is 3 , Area = 3
If length is 4 , Area = 4
Why you should be careful while using eval()?
Consider a situation, you are using a Unix system (macOS, Linux etc) and you have imported
os
module. The os module provides portable way to use operating system functionalities like: read or write a file.If you allow users to input a value using
eval(input())
, the user may issue commands to change file or even delete all the files using command os.system('rm -rf *')
.If you are using
eval(input())
in your code, it's a good idea to check which variables and methods the user can use. You can see which variables and methods are available using dir() method.----------------------------------------------------------------------------------
from math import *
print(eval('dir()'))
------------------------------------------------------------------------------------
When you run the program, the output would be something like:
['__annotations__', '__builtins__', '__doc__', '__file__', '__loader__', '__name__', '__package__', '__spec__', 'acos', 'acosh', 'asin', 'asinh', 'atan', 'atan2', 'atanh', 'ceil', 'copysign', 'cos', 'cosh', 'degrees', 'e', 'erf', 'erfc', 'exp', 'expm1', 'fabs', 'factorial', 'floor', 'fmod', 'frexp', 'fsum', 'gamma', 'gcd', 'hypot', 'inf', 'isclose', 'isfinite', 'isinf', 'isnan', 'ldexp', 'lgamma', 'log', 'log10', 'log1p', 'log2', 'modf', 'nan', 'pi', 'pow', 'radians', 'sin', 'sinh', 'sqrt', 'squareRoot', 'tan', 'tanh', 'tau', 'trunc']
Restricting the Use of Available Methods and Variables in eval()
More often than not, all the available methods and variables used in the expression (first parameter to the eval()) may not be needed, or even may have a security hole. You may need to restrict the use of these methods and variables for eval(). You can do so by passing optional globals and locals parameters (dictionaries) to the eval() method.
1. When both globals and locals parameters omitted
If both parameters are omitted (as in our earlier examples), the expression is executed in the current scope. You can check the available variables and methods using following code:
print(eval('dir()'))
2. Passing globals parameter; locals parameter is omitted
The globals and locals parameters (dictionaries) are used for global and local variables respectively. If the locals dictionary is omitted, it defaults to globals dictionary. Meaning, globals will be used for both global and local variables.
Note: You can check the current global and local dictionary in Python using globals() and locals() built-in methods respectively.
Passing empty dictionary as globals parameter
------------------------------------------------------------------------------------------
from math import *
print(eval('dir()', {}))
# The code below will raise an exception
# print(eval('sqrt(25)', {}))
-------------------------------------------------------------------------------------------
If you pass an empty dictionary as globals, only the
__builtins__
are available to expression
(first parameter to the eval()). Even though we have imported math module in the above program, expression can't access none of the functions provided by the math module.When you run the program, the output will be:
['__builtins__']
Making Certain Methods available
----------------------------------------------------------------------------------------------
from math import *
print(eval('dir()', {'sqrt': sqrt, 'pow': pow}))
-----------------------------------------------------------------------------------------------
Here, the expression can also use
sqrt()
and pow()
methods along with __builtins__
.Also, it's possible to change the name of the method available for the expression according to your wish.
------------------------------------------------------------------------------------------------
from math import *
print(eval('dir()', {'squareRoot': sqrt, 'pow': pow}))
# Using squareRoot in Expression
print(eval('squareRoot(9)', {'squareRoot': sqrt, 'pow': pow}))
--------------------------------------------------------------------------------------------------
In the above program,
squareRoot()
calculates the square root (similar functionality like sqrt()
). However, trying to use sqrt()
will raise an error.Restricting the Use of built-ins
You can restrict the use of
__builtins__
in the expression as follows:eval(expression, {'__builtins__': None})
3. Passing both globals and locals dictionary
You can make needed functions and variables available for use by passing locals dictionary. For example:
--------------------------------------------------------------------------------------------------------
from math import *
a = 5
print(eval('sqrt(a)', {'__builtins__': None}, {'a': a, 'sqrt': sqrt}))
----------------------------------------------------------------------------------------------------------
When you run the program, the output will be:
2.23606797749979 In this program, the expression (first parameter to the eval) can have
sqrt()
method and variable a only. All other methods and variables are unavailable.Restricting the use of eval() by passing globals and locals dictionary will make your code secure particularly when you are using input provided by the user to the eval() method.