Bu Python 2.5 iyi çalışır kod ama 2.7'de vardır:python 2.7/exec/sorun nedir?
import sys
import traceback
try:
from io import StringIO
except:
from StringIO import StringIO
def CaptureExec(stmt):
oldio = (sys.stdin, sys.stdout, sys.stderr)
sio = StringIO()
sys.stdout = sys.stderr = sio
try:
exec(stmt, globals(), globals())
out = sio.getvalue()
except Exception, e:
out = str(e) + "\n" + traceback.format_exc()
sys.stdin, sys.stdout, sys.stderr = oldio
return out
print "%s" % CaptureExec("""
import random
print "hello world"
""")
Ve olsun: o 3.x bayt gelen backported çünkü
string argument expected, got 'str' Traceback (most recent call last): File "D:\3.py", line 13, in CaptureExec exec(stmt, globals(), globals()) File "", line 3, in TypeError: string argument expected, got 'str'
Minör yorumları gibi şeyler yazmak gerekir: Pythonictir tarzı sadece sınıflar için TitleCase kullanmaktır, olması gerektiği "captureExec" veya "capture_exec". Ayrıca, 'try ... except' bloğunda 'ImportError' özelliğini özellikle yakalamalısınız. BytesIO için – katrielalex