X Tutup
Skip to content

Latest commit

 

History

History
21 lines (18 loc) · 1.05 KB

File metadata and controls

21 lines (18 loc) · 1.05 KB
title Python exec() built-in function - Python Cheatsheet
description This function supports dynamic execution of Python code. object must be either a string or a code object. If it is a string, the string is parsed as a suite of Python statements which is then executed (unless a syntax error occurs) [...].
Python exec() built-in function From the Python 3 documentation This function supports dynamic execution of Python code. object must be either a string or a code object. If it is a string, the string is parsed as a suite of Python statements which is then executed (unless a syntax error occurs) [...].
X Tutup