比如说现在有这么一段字符串,"print('helloworld')",那么怎么将其转换成python认识的格式运行?

s="print('helloworld')"
r = compile(s,"<string>", "exec")
exec(r)

输出:helloworld