如何转换它以便它可以执行?
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:])
答案 0 :(得分:3)
您可能需要在字符串上使用lstrip()
来删除任何前导空格,然后再将其传递给exec
。