如何在Python中将字符串转换为“命令”?

时间:2010-03-01 03:30:00

标签: python string

如何转换它以便它可以执行?

Traceback (most recent call last):
  File "C:\Users\Shady\Desktop\tet.py", line 14, in <module>
    exec test
  File "<string>", line 1
    print "hello world"
   ^
IndentationError: unexpected indent

源:

test = ''.join(clientIp.split("test6")[1:])

1 个答案:

答案 0 :(得分:3)

您可能需要在字符串上使用lstrip()来删除任何前导空格,然后再将其传递给exec