Python论坛  - 讨论区

标题:[python-chinese] 大白菜问题.

2006年01月01日 星期日 21:02

风向标-Vane vaneoooo at gmail.com
Sun Jan 1 21:02:30 HKT 2006

def cout(s):
   a=1;b=2;c=3;d=4;e=5
   aa=[a,b,c,d,e]
   p=0
   while p<=s:
      aa[p]=raw_input('Enter:')
      p=p+1
很明显我用了一个比较笨的办法来声明一个序列然后使用
以前学过C++,那里在用前可以先声明一个数组占用一段空的内存位置出来
Python里目前还没学到有先声明出位置然后使用的
请问是怎么做呢?

(翻了手里的书,还有简明教程,都咱未提到,想搜索又不知道从何搜起。只有劳牛人解答了)
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20060101/22260ed9/attachment.htm

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

2006年01月01日 星期日 21:14

xxmplus xxmplus at gmail.com
Sun Jan 1 21:14:26 HKT 2006

你想干嘛

在 06-1-1,风向标-Vane<vaneoooo at gmail.com> 写道:
>
>
> def cout(s):
>    a=1;b=2;c=3;d=4;e=5
>    aa=[a,b,c,d,e]
>    p=0
>    while p<=s:
>       aa[p]=raw_input('Enter:')
>       p=p+1
> 很明显我用了一个比较笨的办法来声明一个序列然后使用
> 以前学过C++,那里在用前可以先声明一个数组占用一段空的内存位置出来
> Python里目前还没学到有先声明出位置然后使用的
> 请问是怎么做呢?
>
> (翻了手里的书,还有简明教程,都咱未提到,想搜索又不知道从何搜起。只有劳牛人解答了)
> _______________________________________________
> python-chinese
> Post: send python-chinese at lists.python.cn
> Subscribe: send subscribe to
> python-chinese-request at lists.python.cn
> Unsubscribe: send unsubscribe to
> python-chinese-request at lists.python.cn
> Detail Info:
> http://python.cn/mailman/listinfo/python-chinese
>
>

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

2006年01月01日 星期日 21:19

风向标-Vane vaneoooo at gmail.com
Sun Jan 1 21:19:05 HKT 2006

自己觉得动手能力差
给自己出了一题
统计若干个学生成绩
录入
加起来,然后求平均
到这第一步录入的时候觉得应该可以有更简便的方法
否则万一我统计一个班,60个学生的数据
岂不是要声明60个变量


在06-1-1,xxmplus <xxmplus at gmail.com> 写道:
>
> 你想干嘛
>
> 在 06-1-1,风向标-Vane<vaneoooo at gmail.com> 写道:
> >
> >
> > def cout(s):
> >    a=1;b=2;c=3;d=4;e=5
> >    aa=[a,b,c,d,e]
> >    p=0
> >    while p<=s:
> >       aa[p]=raw_input('Enter:')
> >       p=p+1
> > 很明显我用了一个比较笨的办法来声明一个序列然后使用
> > 以前学过C++,那里在用前可以先声明一个数组占用一段空的内存位置出来
> > Python里目前还没学到有先声明出位置然后使用的
> > 请问是怎么做呢?
> >
> > (翻了手里的书,还有简明教程,都咱未提到,想搜索又不知道从何搜起。只有劳牛人解答了)
> > _______________________________________________
> > python-chinese
> > Post: send python-chinese at lists.python.cn
> > Subscribe: send subscribe to
> > python-chinese-request at lists.python.cn
> > Unsubscribe: send unsubscribe to
> > python-chinese-request at lists.python.cn
> > Detail Info:
> > http://python.cn/mailman/listinfo/python-chinese
> >
> >
>
> _______________________________________________
> python-chinese
> Post: send python-chinese at lists.python.cn
> Subscribe: send subscribe to python-chinese-request at lists.python.cn
> Unsubscribe: send unsubscribe to  python-chinese-request at lists.python.cn
> Detail Info: http://python.cn/mailman/listinfo/python-chinese
>
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20060101/8fcdcb4a/attachment.html

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

2006年01月01日 星期日 21:25

魏忠 weizhong2004 at gmail.com
Sun Jan 1 21:25:46 HKT 2006

a=[0]*60
for x in range(60):
     a[x]=input('请输入学生成绩')


在06-1-1,风向标-Vane <vaneoooo at gmail.com> 写道:
>
> 自己觉得动手能力差
> 给自己出了一题
> 统计若干个学生成绩
> 录入
> 加起来,然后求平均
> 到这第一步录入的时候觉得应该可以有更简便的方法
> 否则万一我统计一个班,60个学生的数据
> 岂不是要声明60个变量
>
>
> 在06-1-1,xxmplus <xxmplus at gmail.com> 写道:
> >
> > 你想干嘛
> >
> > 在 06-1-1,风向标-Vane<vaneoooo at gmail.com> 写道:
> > >
> > >
> > > def cout(s):
> > >    a=1;b=2;c=3;d=4;e=5
> > >    aa=[a,b,c,d,e]
> > >    p=0
> > >    while p<=s:
> > >       aa[p]=raw_input('Enter:')
> > >       p=p+1
> > > 很明显我用了一个比较笨的办法来声明一个序列然后使用
> > > 以前学过C++,那里在用前可以先声明一个数组占用一段空的内存位置出来
> > > Python里目前还没学到有先声明出位置然后使用的
> > > 请问是怎么做呢?
> > >
> > > (翻了手里的书,还有简明教程,都咱未提到,想搜索又不知道从何搜起。只有劳牛人解答了)
> > > _______________________________________________
> > > python-chinese
> > > Post: send python-chinese at lists.python.cn
> > > Subscribe: send subscribe to
> > > python-chinese-request at lists.python.cn
> > > Unsubscribe: send unsubscribe to
> > > python-chinese-request at lists.python.cn
> > > Detail Info:
> > > http://python.cn/mailman/listinfo/python-chinese
> > >
> > >
> >
> > _______________________________________________
> > python-chinese
> > Post: send python-chinese at lists.python.cn
> > Subscribe: send subscribe to python-chinese-request at lists.python.cn
> > Unsubscribe: send unsubscribe to  python-chinese-request at lists.python.cn
> > Detail Info: http://python.cn/mailman/listinfo/python-chinese
> >
> >
>
> _______________________________________________
> python-chinese
> Post: send python-chinese at lists.python.cn
> Subscribe: send subscribe to python-chinese-request at lists.python.cn
> Unsubscribe: send unsubscribe to  python-chinese-request at lists.python.cn
> Detail Info: http://python.cn/mailman/listinfo/python-chinese
>
>


--

开飞机的舒克
http://www.lvye.org/shuke
msn:weizhong at netease.com
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20060101/62694de9/attachment.htm

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

2006年01月02日 星期一 00:43

xxmplus xxmplus at gmail.com
Mon Jan 2 00:43:58 HKT 2006

直接append

a=[]
a.append(x)


在 06-1-1,魏忠<weizhong2004 at gmail.com> 写道:
> a=[0]*60
> for x in range(60):
>      a[x]=input('请输入学生成绩')
>
>
> 在06-1-1,风向标-Vane <vaneoooo at gmail.com> 写道:
> >
> > 自己觉得动手能力差
> > 给自己出了一题
> > 统计若干个学生成绩
> > 录入
> > 加起来,然后求平均
> > 到这第一步录入的时候觉得应该可以有更简便的方法
> > 否则万一我统计一个班,60个学生的数据
> > 岂不是要声明60个变量
> >
> >
> > 在06-1-1,xxmplus <xxmplus at gmail.com> 写道:
> >
> > > 你想干嘛
> > >
> > > 在 06-1-1,风向标-Vane< vaneoooo at gmail.com> 写道:
> > > >
> > > >
> > > > def cout(s):
> > > >    a=1;b=2;c=3;d=4;e=5
> > > >    aa=[a,b,c,d,e]
> > > >    p=0
> > > >    while p<=s:
> > > >       aa[p]=raw_input('Enter:')
> > > >       p=p+1
> > > > 很明显我用了一个比较笨的办法来声明一个序列然后使用
> > > > 以前学过C++,那里在用前可以先声明一个数组占用一段空的内存位置出来
> > > > Python里目前还没学到有先声明出位置然后使用的
> > > > 请问是怎么做呢?
> > > >
> > > > (翻了手里的书,还有简明教程,都咱未提到,想搜索又不知道从何搜起。只有劳牛人解答了)
> > > > _______________________________________________
> > > > python-chinese
> > > > Post: send python-chinese at lists.python.cn
> > > > Subscribe: send subscribe to
> > > > python-chinese-request at lists.python.cn
> > > > Unsubscribe: send unsubscribe to
> > > > python-chinese-request at lists.python.cn
> > > > Detail Info:
> > > > http://python.cn/mailman/listinfo/python-chinese
> > > >
> > > >
> > >
> > > _______________________________________________
> > > python-chinese
> > > Post: send python-chinese at lists.python.cn
> > > Subscribe: send subscribe to
> python-chinese-request at lists.python.cn
> > > Unsubscribe: send unsubscribe to
> python-chinese-request at lists.python.cn
> > > Detail Info:
> http://python.cn/mailman/listinfo/python-chinese
> > >
> > >
> >
> >
> > _______________________________________________
> > python-chinese
> > Post: send python-chinese at lists.python.cn
> > Subscribe: send subscribe to
> python-chinese-request at lists.python.cn
> > Unsubscribe: send unsubscribe to
> python-chinese-request at lists.python.cn
> > Detail Info:
> http://python.cn/mailman/listinfo/python-chinese
> >
> >
>
>
>
> --
>
> 开飞机的舒克
> http://www.lvye.org/shuke
>  msn:weizhong at netease.com
> _______________________________________________
> python-chinese
> Post: send python-chinese at lists.python.cn
> Subscribe: send subscribe to
> python-chinese-request at lists.python.cn
> Unsubscribe: send unsubscribe to
> python-chinese-request at lists.python.cn
> Detail Info:
> http://python.cn/mailman/listinfo/python-chinese
>
>

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

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

    你的回复:

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

    Zeuux © 2025

    京ICP备05028076号