Table Of Contents

Previous topic

pyExecp

Next topic

pyExit

This Page

pyExec

The function pyExec allows to execute multiple lines of python code from within R.

Since pyExec can execute multiple lines, it is the obvious choice for defining Python functions or running small scripts where no return value is needed.

Usage

pyExec(code)

Arguments

code   a string of Python code to be executed in Python.

Examples

pyExec('
print("The following line will not appear in the R terminal!")
"Hello" + " " + "R!"
print("NOTE: pyExecp would also show the line above!")
print("The following line will appear in the R terminal!")
print("Hello" + " " + "R!")
')