pyExecp: Executes a single line of Python code from within R

View source: R/PyExec.R

pyExecpR Documentation

Executes a single line of Python code from within R

Description

The function pyExecp is designed to execute a single line of Python code from within R. Thereby pyExecp tries to emulate the natural interactive Python terminal behavior.

Usage

pyExecp(code)

Arguments

code

a string of Python code to be executed in Python.

Details

The name pyExecp is short for python execute and print. As the name is indicating the most visual difference between pyExec and pyExecp lies in the printing behavior. For example, executing pyExecp('"Hello " + "R!"') would show 'Hello R!' in the R terminal, executing pyExec('"Hello " + "R!"') wouldn't show anything. Internally pyExec uses PyRun_SimpleString and pyExecp uses PyRun_String with the flag Py_single_input, therefore pyExecp can be used to simulate an interactive Python interpreter behavior.

Examples


pyExecp('"Hello" + " " + "R!"')

Sage-Bionetworks/PythonEmbedInR documentation built on April 17, 2023, 4:23 p.m.