首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 开发语言 > perl python >

刚学习python,一些基本有关问题询问下大家

2012-04-13 
刚学习python,一些基本问题询问下大家。在Windows Powershell运行python出现如下错误。python ex1.pyFile

刚学习python,一些基本问题询问下大家。
在Windows Powershell运行python出现如下错误。

>>>python ex1.py
  File"<stdin>",line 1
  python ex1.py
  ^
SyntaxError: invalid syntax

请问这个是怎么回事?

具体的流程如下:
打开gedit(我安装在E盘),然后编辑:
 具体内容如下

print "Hello World!"print "Hello Again"print "I like typing this"print "This is fun"print "Yay! Printing"print "I'd much rather you 'not'"print 'I "said" do not touch this'

另存为
c: \ex1.py

再打开PowerShell

移动到C的目录之后


输入 python ex1.py 回车。结果出现该问题。


其他:
1,Python安装在C盘。
2,gedit安装在E盘。


例外还有一个小问题 windows Powershell究竟是什么,为什么要用这个来运行python。

[解决办法]
按照我的来
打开记事本,
写入:
print 'test'
保存为c:\ex1.txt

开始-运行-cmd
回车
输入 python ex1.py
回车
应该看到test输出


[解决办法]
把python的安装路径加入到path环境变更中,然后在任何一个cmd窗口中执行 python ex1.py就行的。

热点排行