If I want to convert one type in another, I can use casts:
s = str(12.5)
i = int(s)
f = float(s)
However, there doesn't seem to be a function cast, or even a statement cast. So how can I turn this string into a statement?
s = """for i in range(v):
print v - i,
print"""
Thanks in advance for any answers.
_____
René