n = 1 p = 4 print n += p
给我:
文件"p7.py",第17行 print n + = p SyntaxError:语法无效
文件"p7.py",第17行
print n + = p
SyntaxError:语法无效
如何解决这个问题?
python
python ×1