Python论坛  - 讨论区

标题:[python-chinese] question

2005年07月03日 星期日 15:20

Xinyue Ye ypaami at gmail.com
Sun Jul 3 15:20:42 HKT 2005

$python calc.py 是什么意思?我怎么一输入就得到:
"SyntaxError: invalid syntax"

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2005年07月03日 星期日 15:25

albertlee hanzhupeng at 163.com
Sun Jul 3 15:25:53 HKT 2005

Xinyue Ye,你好

$python calc.py
是在 Unix 的 shell 里面运行 python 文件的命令
在win下,就类似于:

c:\>python calc.py

不要在idle里面这样用

albertlee,hanzhupeng at 163.com
2005-7-3 
----- 收到以下来信内容 ----- 
发件人: Xinyue Ye 
收件人: python-chinese 
时  间: 2005-07-03, 15:20:42
主  题: [python-chinese] question


$python calc.py 是什么意思?我怎么一输入就得到:
"SyntaxError: invalid syntax"
_______________________________________________
python-chinese list
python-chinese at lists.python.cn
http://python.cn/mailman/listinfo/python-chinese
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20050703/233a71f8/attachment.html

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2005年07月03日 星期日 18:01

清风 paradise.qingfeng at gmail.com
Sun Jul 3 18:01:15 HKT 2005

运行calc.py运行程序,但是这个calc.py有语法错误

2005/7/3, Xinyue Ye <ypaami at gmail.com>:
> $python calc.py 是什么意思?我怎么一输入就得到:
> "SyntaxError: invalid syntax"
> 
> _______________________________________________
> python-chinese list
> python-chinese at lists.python.cn
> http://python.cn/mailman/listinfo/python-chinese
> 
> 
> 


-- 
Blog:http://www.donews.net/changzheng

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2005年07月03日 星期日 21:26

shhgs shhgs.efhilt at gmail.com
Sun Jul 3 21:26:47 HKT 2005

有可能是程序有问题。Python的缩进要求比较严格,你这里把代码贴上来,我们也看不清楚。况且有时候即便看着没问题,Python也会报错,因为有可能Python在判断\t算几个空格的时候和你的编辑器的设定不一致。

要看Python是不是安装成功,运行python -V

然后建议你按照Python Manual的tutorial的顺序看,这个calc.py就别去管了,过几个礼拜,你自己就能写了。

On 7/3/05, 清风 <paradise.qingfeng at gmail.com> wrote:
> 运行calc.py运行程序,但是这个calc.py有语法错误
> 
> 2005/7/3, Xinyue Ye <ypaami at gmail.com>:
> > $python calc.py 是什么意思?我怎么一输入就得到:
> > "SyntaxError: invalid syntax"
> >
> > _______________________________________________
> > python-chinese list
> > python-chinese at lists.python.cn
> > http://python.cn/mailman/listinfo/python-chinese
> >
> >
> >
> 
> 
> --
> Blog:http://www.donews.net/changzheng
> 
> _______________________________________________
> python-chinese list
> python-chinese at lists.python.cn
> http://python.cn/mailman/listinfo/python-chinese
> 
> 
>

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2005年07月04日 星期一 10:26

shisa samrobertsmith at gmail.com
Mon Jul 4 10:26:25 HKT 2005

在哪里运行PYTHON-V啊?

On 7/3/05, shhgs <shhgs.efhilt at gmail.com> wrote:
> 有可能是程序有问题。Python的缩进要求比较严格,你这里把代码贴上来,我们也看不清楚。况且有时候即便看着没问题,Python也会报错,因为有可能Python在判断\t算几个空格的时候和你的编辑器的设定不一致。
> 
> 要看Python是不是安装成功,运行python -V
> 
> 然后建议你按照Python Manual的tutorial的顺序看,这个calc.py就别去管了,过几个礼拜,你自己就能写了。
> 
> On 7/3/05, 清风 <paradise.qingfeng at gmail.com> wrote:
> > 运行calc.py运行程序,但是这个calc.py有语法错误
> >
> > 2005/7/3, Xinyue Ye <ypaami at gmail.com>:
> > > $python calc.py 是什么意思?我怎么一输入就得到:
> > > "SyntaxError: invalid syntax"
> > >
> > > _______________________________________________
> > > python-chinese list
> > > python-chinese at lists.python.cn
> > > http://python.cn/mailman/listinfo/python-chinese
> > >
> > >
> > >
> >
> >
> > --
> > Blog:http://www.donews.net/changzheng
> >
> > _______________________________________________
> > python-chinese list
> > python-chinese at lists.python.cn
> > http://python.cn/mailman/listinfo/python-chinese
> >
> >
> >
> 
> _______________________________________________
> python-chinese list
> python-chinese at lists.python.cn
> http://python.cn/mailman/listinfo/python-chinese
> 
> 
>

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2005年07月04日 星期一 10:50

honeyday honeyday.mj at gmail.com
Mon Jul 4 10:50:50 HKT 2005

命令行里,在windows里面就是cmd,在unix下就是shell的提示符,可能是$或者#。

运行后,如果安装成功的话,就会显示安装的python的版本。

我的结果是:


C:\Documents and Settings\honeyday>python -V
Python 2.4

在 05-7-4,shisa<samrobertsmith at gmail.com> 写道:
> 在哪里运行PYTHON-V啊?
> 
> On 7/3/05, shhgs <shhgs.efhilt at gmail.com> wrote:
> > 有可能是程序有问题。Python的缩进要求比较严格,你这里把代码贴上来,我们也看不清楚。况且有时候即便看着没问题,Python也会报错,因为有可能Python在判断\t算几个空格的时候和你的编辑器的设定不一致。
> >
> > 要看Python是不是安装成功,运行python -V
> >
> > 然后建议你按照Python Manual的tutorial的顺序看,这个calc.py就别去管了,过几个礼拜,你自己就能写了。
> >
> > On 7/3/05, 清风 <paradise.qingfeng at gmail.com> wrote:
> > > 运行calc.py运行程序,但是这个calc.py有语法错误
> > >
> > > 2005/7/3, Xinyue Ye <ypaami at gmail.com>:
> > > > $python calc.py 是什么意思?我怎么一输入就得到:
> > > > "SyntaxError: invalid syntax"
> > > >
> > > > _______________________________________________
> > > > python-chinese list
> > > > python-chinese at lists.python.cn
> > > > http://python.cn/mailman/listinfo/python-chinese
> > > >
> > > >
> > > >
> > >
> > >
> > > --
> > > Blog:http://www.donews.net/changzheng
> > >
> > > _______________________________________________
> > > python-chinese list
> > > python-chinese at lists.python.cn
> > > http://python.cn/mailman/listinfo/python-chinese
> > >
> > >
> > >
> >
> > _______________________________________________
> > python-chinese list
> > python-chinese at lists.python.cn
> > http://python.cn/mailman/listinfo/python-chinese
> >
> >
> >
> 
> _______________________________________________
> python-chinese list
> python-chinese at lists.python.cn
> http://python.cn/mailman/listinfo/python-chinese
> 
> 
>

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

如下红色区域有误,请重新填写。

    你的回复:

    请 登录 后回复。还没有在Zeuux哲思注册吗?现在 注册 !

    Zeuux © 2025

    京ICP备05028076号