Python 3与print()语法无效

Cos*_*Inc 3 python-3.x

我已经使用2to3将用Python 2.6编写的代码转换为Python 3.所有语法更改都已相应地进行,但我仍然收到如下错误:

print('Type: ' + t)
    ^
SyntaxError: invalid syntax
Run Code Online (Sandbox Code Playgroud)

这不仅发生在print()中,还发生在其他完全有效的代码中,例如self.type(arg)

可能有什么不对?我顺便使用python 3.2.

请你出去..

Len*_*bro 9

语法错误可能在上面的行上.看起来像一个缺少的括号或其他东西.