第一个Python代码

时间:2015-12-10 21:49:06

标签: python pycharm

我在计算机上安装了PyCharm和python并尝试编写这段简单的代码,但是我收到了错误。

for i in range(10):
  x = 0.1*i
  print( x )
  print( x / ( 1 - x * x ) )

错误是:

File "C:/WinPython-2.7.6.2-64/python-2.7.6.amd64/Lib/site-    
packages/ib/opt/wrapper_v5.py", line 50
    print errormsg
             ^
SyntaxError: Missing parentheses in call to 'print'

Process finished with exit code 1

我是否需要像C ++中的任何头语句。我来自C ++和Matlab背景。

1 个答案:

答案 0 :(得分:-4)

你用这个:

for i in range(10):
   x = 0.1*i
   print( x )
   print( x / ( 1 - x * x ) )

但是在Python 2中它是:

for i in range(10):
    x = 0.1*i
    print x 
    print x / ( 1 - x * x )

你的代码是用Pyhton3编写的,所以也许可以在不同的教程中安装或学习python2。