Python论坛  - 讨论区

标题:[python-chinese] forÓï¾äÎÊÌ⣿

2004年03月26日 星期五 11:58

wide 288 wide288 at yahoo.com.cn
Fri Mar 26 11:58:53 HKT 2004

请问如果我想把一个数组清0,怎样用for呢?
我读手册没有看懂。
for x in :
     = 0

只想做到(C语言写法):
int n = 15;
int que[n];
for(i = 0; ihttp://cn.rd.yahoo.com/mail_cn/tag/?http://cn.mail.yahoo.com


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

2004年03月26日 星期五 14:34

Jacob Fan jacob at exoweb.net
Fri Mar 26 14:34:20 HKT 2004

n = 15
que = [0] * n

-------
Explicit is better than implicit ... 

-----Original Message-----
From: wide 288 [mailto:wide288 at yahoo.com.cn] 
Sent: 2004年3月26日 11:59
To: python-chinese at lists.python.cn
Subject: [python-chinese] foró????êìa£?


请问如果我想把一个数组清0,怎样用for呢?
我读手册没有看懂。
for x in :
     = 0

只想做到(C语言写法):
int n = 15;
int que[n];
for(i = 0; ihttp://cn.rd.yahoo.com/mail_cn/tag/?http://cn.mail.yahoo.com
_______________________________________________
python-chinese list
python-chinese at lists.python.cn http://python.cn/mailman/listinfo/python-chinese


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

2004年03月26日 星期五 15:01

caixl xl_cai at 163.com
Fri Mar 26 15:01:23 HKT 2004

n=15
for x in range(n):
  que[x] = 0

-----原始邮件-----
发件人: python-chinese-bounces at lists.python.cn
[mailto:python-chinese-bounces at lists.python.cn]代表 Jacob Fan
发送时间: 2004年3月26日 14:34
收件人: python-chinese at lists.python.cn
主题: RE: [python-chinese] for语句问题?


n = 15
que = [0] * n

-------
Explicit is better than implicit ... 

-----Original Message-----
From: wide 288 [mailto:wide288 at yahoo.com.cn] 
Sent: 2004年3月26日 11:59
To: python-chinese at lists.python.cn
Subject: [python-chinese] foró????êìa£?


请问如果我想把一个数组清0,怎样用for呢?
我读手册没有看懂。
for x in :
     = 0

只想做到(C语言写法):
int n = 15;
int que[n];
for(i = 0; ihttp://cn.rd.yahoo.com/mail_cn/tag/?http://cn.mail.yahoo.com
_______________________________________________
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]

2004年03月26日 星期五 15:03

Jacob Fan jacob at exoweb.net
Fri Mar 26 15:03:47 HKT 2004

-----Original Message-----
From: caixl [mailto:xl_cai at 163.com] 
Sent: 2004年3月26日 15:01
To: python-chinese at lists.python.cn
Subject: 答复: [python-chinese] for语句问题?


> n=15
> for x in range(n):
>   que[x] = 0
错。


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

2004年03月26日 星期五 15:22

caixl xl_cai at 163.com
Fri Mar 26 15:22:06 HKT 2004

对于这个问题
>> 只想做到(C语言写法):
>> int n = 15;
>> int que[n];
>> for(i = 0; i>>      que[i] = 0;
应该达到目的了吧!

> n=15
> for x in range(n):
>   que[x] = 0

错在哪个地方呢?请教一下!

-----原始邮件-----
发件人: python-chinese-bounces at lists.python.cn
[mailto:python-chinese-bounces at lists.python.cn]代表 Jacob Fan
发送时间: 2004年3月26日 15:04
收件人: python-chinese at lists.python.cn
主题: RE: [python-chinese] for语句问题?


-----Original Message-----
From: caixl [mailto:xl_cai at 163.com] 
Sent: 2004年3月26日 15:01
To: python-chinese at lists.python.cn
Subject: 答复: [python-chinese] for语句问题?


> n=15
> for x in range(n):
>   que[x] = 0
错。
_______________________________________________
python-chinese list
python-chinese at lists.python.cn
http://python.cn/mailman/listinfo/python-chinese

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

2004年03月26日 星期五 15:22

Jacob Fan jacob at exoweb.net
Fri Mar 26 15:22:35 HKT 2004

天,你没试着运行你的这几句话?你的que在哪儿初始化的?用什么方式初始化的? 

-------
Explicit is better than implicit ... 

-----Original Message-----
From: caixl [mailto:xl_cai at 163.com] 
Sent: 2004年3月26日 15:22
To: python-chinese at lists.python.cn
Subject: 答复: [python-chinese] for语句问题?


对于这个问题
>> 只想做到(C语言写法):
>> int n = 15;
>> int que[n];
>> for(i = 0; i>>      que[i] = 0;
应该达到目的了吧!

> n=15
> for x in range(n):
>   que[x] = 0

错在哪个地方呢?请教一下!

-----原始邮件-----
发件人: python-chinese-bounces at lists.python.cn
[mailto:python-chinese-bounces at lists.python.cn]代表 Jacob Fan
发送时间: 2004年3月26日 15:04
收件人: python-chinese at lists.python.cn
主题: RE: [python-chinese] for语句问题?


-----Original Message-----
From: caixl [mailto:xl_cai at 163.com] 
Sent: 2004年3月26日 15:01
To: python-chinese at lists.python.cn
Subject: 答复: [python-chinese] for语句问题?


> n=15
> for x in range(n):
>   que[x] = 0
错。
_______________________________________________
python-chinese list
python-chinese at lists.python.cn http://python.cn/mailman/listinfo/python-chinese


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

2004年03月26日 星期五 15:41

caixl xl_cai at 163.com
Fri Mar 26 15:41:45 HKT 2004

我只是说明如何用for语句来达到数组清零的目的,并不考虑到数组的初始化的问题。不过这几句语句的确是不能运行的,说它错了也是正确的。


-----原始邮件-----
发件人: python-chinese-bounces at lists.python.cn
[mailto:python-chinese-bounces at lists.python.cn]代表 Jacob Fan
发送时间: 2004年3月26日 15:23
收件人: python-chinese at lists.python.cn
主题: RE: [python-chinese] for语句问题?


天,你没试着运行你的这几句话?你的que在哪儿初始化的?用什么方式初始化的? 

-------
Explicit is better than implicit ... 

-----Original Message-----
From: caixl [mailto:xl_cai at 163.com] 
Sent: 2004年3月26日 15:22
To: python-chinese at lists.python.cn
Subject: 答复: [python-chinese] for语句问题?


对于这个问题
>> 只想做到(C语言写法):
>> int n = 15;
>> int que[n];
>> for(i = 0; i>>      que[i] = 0;
应该达到目的了吧!

> n=15
> for x in range(n):
>   que[x] = 0

错在哪个地方呢?请教一下!

-----原始邮件-----
发件人: python-chinese-bounces at lists.python.cn
[mailto:python-chinese-bounces at lists.python.cn]代表 Jacob Fan
发送时间: 2004年3月26日 15:04
收件人: python-chinese at lists.python.cn
主题: RE: [python-chinese] for语句问题?


-----Original Message-----
From: caixl [mailto:xl_cai at 163.com] 
Sent: 2004年3月26日 15:01
To: python-chinese at lists.python.cn
Subject: 答复: [python-chinese] for语句问题?


> n=15
> for x in range(n):
>   que[x] = 0
错。
_______________________________________________
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]

2004年03月26日 星期五 15:42

Jacob Fan jacob at exoweb.net
Fri Mar 26 15:42:27 HKT 2004

你要是仔细看了他给出的那个程序,你就会知道他的目的。他是要创造出一个15个元素的数组,然后按照c语言中写这类程序的要求,这时候数组中每个元素的值未知,所以要给每个元素清零。而在Python中既没有创造固定长度的数组,也没有然后给它清零这回事。在Python中达到他的目的的写法是:
n = 15
[0] * n
-------
Explicit is better than implicit ... 

-----Original Message-----
From: caixl [mailto:xl_cai at 163.com] 
Sent: 2004年3月26日 15:42
To: python-chinese at lists.python.cn
Subject: 答复: [python-chinese] for语句问题?


我只是说明如何用for语句来达到数组清零的目的,并不考虑到数组的初始化的问题。不过这几句语句的确是不能运行的,说它错了也是正确的。


-----原始邮件-----
发件人: python-chinese-bounces at lists.python.cn
[mailto:python-chinese-bounces at lists.python.cn]代表 Jacob Fan
发送时间: 2004年3月26日 15:23
收件人: python-chinese at lists.python.cn
主题: RE: [python-chinese] for语句问题?


天,你没试着运行你的这几句话?你的que在哪儿初始化的?用什么方式初始化的? 

-------
Explicit is better than implicit ... 

-----Original Message-----
From: caixl [mailto:xl_cai at 163.com] 
Sent: 2004年3月26日 15:22
To: python-chinese at lists.python.cn
Subject: 答复: [python-chinese] for语句问题?


对于这个问题
>> 只想做到(C语言写法):
>> int n = 15;
>> int que[n];
>> for(i = 0; i>>      que[i] = 0;
应该达到目的了吧!

> n=15
> for x in range(n):
>   que[x] = 0

错在哪个地方呢?请教一下!

-----原始邮件-----
发件人: python-chinese-bounces at lists.python.cn
[mailto:python-chinese-bounces at lists.python.cn]代表 Jacob Fan
发送时间: 2004年3月26日 15:04
收件人: python-chinese at lists.python.cn
主题: RE: [python-chinese] for语句问题?


-----Original Message-----
From: caixl [mailto:xl_cai at 163.com] 
Sent: 2004年3月26日 15:01
To: python-chinese at lists.python.cn
Subject: 答复: [python-chinese] for语句问题?


> n=15
> for x in range(n):
>   que[x] = 0
错。
_______________________________________________
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]

2004年03月26日 星期五 15:45

周海文 zhou.haiwen at gti.cn
Fri Mar 26 15:45:53 HKT 2004

最简单的:
que=[0]*15

复杂一点的:
que=[]
for x in range(15):
  que.append(0)

有点难理解的:
que=[ 0 for x in range(15)]
  ----- Original Message ----- 
  From: Jacob Fan 
  To: python-chinese at lists.python.cn 
  Sent: Friday, March 26, 2004 3:22 PM
  Subject: RE: [python-chinese] for语句问题?


  天,你没试着运行你的这几句话?你的que在哪儿初始化的?用什么方式初始化的? 

  -------
  Explicit is better than implicit ... 

  -----Original Message-----
  From: caixl [mailto:xl_cai at 163.com] 
  Sent: 2004年3月26日 15:22
  To: python-chinese at lists.python.cn
  Subject: 答复: [python-chinese] for语句问题?


  对于这个问题
  >> 只想做到(C语言写法):
  >> int n = 15;
  >> int que[n];
  >> for(i = 0; i>      que[i] = 0;
  应该达到目的了吧!

  > n=15
  > for x in range(n):
  >   que[x] = 0

  错在哪个地方呢?请教一下!

  -----原始邮件-----
  发件人: python-chinese-bounces at lists.python.cn
  [mailto:python-chinese-bounces at lists.python.cn]代表 Jacob Fan
  发送时间: 2004年3月26日 15:04
  收件人: python-chinese at lists.python.cn
  主题: RE: [python-chinese] for语句问题?


  -----Original Message-----
  From: caixl [mailto:xl_cai at 163.com] 
  Sent: 2004年3月26日 15:01
  To: python-chinese at lists.python.cn
  Subject: 答复: [python-chinese] for语句问题?


  > n=15
  > for x in range(n):
  >   que[x] = 0
  错。
  _______________________________________________
  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
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20040326/d48de6e3/attachment.html

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

2004年03月26日 星期五 15:51

Zoom.Quiet zoomq at infopro.cn
Fri Mar 26 15:51:17 HKT 2004

Hello caixl,

其实 Python 有其方便快速完成想法的个性,
C 的 for 是万不得以才常常使用的!

Python 有更加简洁的处理正法,为什么一定要使用 for?

=== [ 15:41 ; 04-03-26 ] you wrote:

c> 我只是说明如何用for语句来达到数组清零的目的,并不考虑到数组的初始化的问题。不过这几句语句的确是不能运行的,说它错了也是正确的。


c> -----原始邮件-----
c> 发件人: python-chinese-bounces at lists.python.cn
c> [mailto:python-chinese-bounces at lists.python.cn]代表 Jacob Fan
c> 发送时间: 2004年3月26日 15:23
c> 收件人: python-chinese at lists.python.cn
c> 主题: RE: [python-chinese] for语句问题?


c> 天,你没试着运行你的这几句话?你的que在哪儿初始化的?用什么方式初始化的?

c> -------
c> Explicit is better than implicit ... 

c> -----Original Message-----
c> From: caixl [mailto:xl_cai at 163.com] 
c> Sent: 2004年3月26日 15:22
c> To: python-chinese at lists.python.cn
c> Subject: 答复: [python-chinese] for语句问题?


c> 对于这个问题
>>> 只想做到(C语言写法):
>>> int n = 15;
>>> int que[n];
>>> for(i = 0; i>>>      que[i] = 0;
c> 应该达到目的了吧!

>> n=15
>> for x in range(n):
>>   que[x] = 0

c> 错在哪个地方呢?请教一下!

c> -----原始邮件-----
c> 发件人: python-chinese-bounces at lists.python.cn
c> [mailto:python-chinese-bounces at lists.python.cn]代表 Jacob Fan
c> 发送时间: 2004年3月26日 15:04
c> 收件人: python-chinese at lists.python.cn
c> 主题: RE: [python-chinese] for语句问题?


c> -----Original Message-----
c> From: caixl [mailto:xl_cai at 163.com] 
c> Sent: 2004年3月26日 15:01
c> To: python-chinese at lists.python.cn
c> Subject: 答复: [python-chinese] for语句问题?


>> n=15
>> for x in range(n):
>>   que[x] = 0
c> 错。
c> _______________________________________________
c> python-chinese list
c> python-chinese at lists.python.cn
c> http://python.cn/mailman/listinfo/python-chinese
c> _______________________________________________
c> python-chinese list
c> python-chinese at lists.python.cn
c> http://python.cn/mailman/listinfo/python-chinese

=== === === === === === === === === === 

-- 
Best regards,
 Zoom.Quiet                            

 /=======================================\
]Time is unimportant, only life important![
 \=======================================/



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

2004年03月27日 星期六 11:44

何志强 hzq at lebut.com
Sat Mar 27 11:44:22 HKT 2004

应业务发展需要,上海汉昌电脑科技发展有限公司(www.lebut.com)诚聘以下人员:

一、全职 VB.NET 开发人员 2 名
1、工作踏实认真、责任心强、学习能力强
2、熟悉VB.NET、ASP.NET、SQL、XML
3、熟悉Oracle者优先
4、工作地点:上海
5、工作性质:全职
6、对学历没有要求,欢迎应届毕业生

二、全职 Python 开发人员 1 名
1、工作踏实认真、责任心强、学习能力强
2、熟悉Python语言
3、熟悉Zope、Plone者优先
4、工作地点:上海
5、工作性质:全职
6、对学历没有要求,欢迎应届毕业生

三、兼职 VB.NET 开发人员若干名
1、工作踏实认真、责任心强、学习能力强
2、熟悉VB.NET、ASP.NET、SQL、XML
3、熟悉Oracle者优先
4、工作地点:上海
5、工作性质:兼职

全职人员的待遇情况:
1、工资面议
2、3个月试用期,表现出色者可以提前转正
3、试用期工资8折
4、在客户处开发项目的所有开发人员(不管是在试用期还是转正后)都有项目补贴
5、转正后人员公司提供住房补贴 
6、表现出色者,公司会为其提升待遇
我们的要求是,认真负责、能够挑战自我、不断进步、对自己的专业有热情、踏踏实实。
只要是这样的员工,公司会提供良好的发展机会,并提升待遇。

有意者请将简历发往hzq at lebut.com,欢迎您的加盟,^_^




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

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

    你的回复:

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

    Zeuux © 2024

    京ICP备05028076号