Example:
from neuron import h
strdef = h.ref('') h.sprint(strdef, 'There are %d %s.', 3, 'cows') print(strdef[0])
Note
Similar functionality is available for Python strings using the % operator or (for Python 2.6+) a string object's format method. As Python strings are immutable, these approaches each create a new string.