w3resource
w3resource logo

Python: exec() function

(追記) (追記ここまで)
(追記) (追記ここまで)

exec() function

The exec() function is used to execute the specified Python code. object must be either a string or a code object.

Version:

(Python 3)

Syntax:

exec(object[, globals[, locals]])

Parameter:

Name Description Required /
Optional
object Either a string or a code object. Required
globals A dictionary containing global parameters. Optional
locals A dictionary containing local parameters. Optional

Example-1: Python exec() function

x = 5
print(exec('x'))

Output:

None

Example-2: Python exec() function

Example = 'x = 6\ny=15\nprint("Sum =", x+y)'
exec(Example)

Output:

Sum = 21

Pictorial Presentation:

Python: Built-in-function - exec() function

Python Code Editor:

[フレーム]

PREV : eval()
NEXT : filter()

Test your Python skills with w3resource's quiz



Follow us on Facebook and Twitter for latest update.

(追記) (追記ここまで)


(追記) (追記ここまで)
(追記) (追記ここまで)


AltStyle によって変換されたページ (->オリジナル) /