Computer Science, asked by sunilmishra17467, 9 months ago

Evaluthe the expressions in
pythons interactive
Mode
((20-10)*5)​

Answers

Answered by sahad786
0

Explanation:

Python’s eval() allows you to evaluate arbitrary Python expressions from a string-based or compiled-code-based input. This function can be handy when you’re trying to dynamically evaluate Python expressions from any input that comes as a string or a compiled code object.

Although Python’s eval() is an incredibly useful tool, the function has some important security implications that you should consider before using it. In this tutorial, you’ll learn how eval() works and how to use it safely and effectively in your Python programs.

Similar questions