Python论坛  - 讨论区

标题:[python-chinese] ÔõÑù´ÓÁ´±íÖÐËæ»ú³éÈ¡Ò»¸öÔªËØ£¿

2004年08月09日 星期一 15:13

mike gaul zopemaillistcn at yahoo.com.cn
Mon Aug 9 15:13:13 HKT 2004

比如list = ['a','b','c','d']
我想随机从里面抽取一个元素,应该怎么做?

_________________________________________________________
Do You Yahoo!?
150万曲MP3疯狂搜,带您闯入音乐殿堂
http://music.yisou.com/
美女明星应有尽有,搜遍美图、艳图和酷图
http://image.yisou.com
1G就是1000兆,雅虎电邮自助扩容!
http://cn.rd.yahoo.com/mail_cn/tag/1g/*http://cn.mail.yahoo.com/event/mail_1g/


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

2004年08月09日 星期一 15:16

Xie Yanbo idkey at 163.com
Mon Aug 9 15:16:31 HKT 2004

On 2004-08-09 15:13:1092035593 +0800, mike gaul wrote:
> 比如list = ['a','b','c','d']
> 我想随机从里面抽取一个元素,应该怎么做?

whrandom.choice(alist)



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

2004年08月09日 星期一 15:19

mike gaul zopemaillistcn at yahoo.com.cn
Mon Aug 9 15:19:09 HKT 2004

看不懂,能不能解释一下。
这里的whrandom是什么东西?要不要先定义他?
谢谢!

 --- Xie Yanbo <idkey at 163.com> 的正文:
> On 2004-08-09 15:13:1092035593 +0800, mike gaul
> wrote:
> > 比如list = ['a','b','c','d']
> > 我想随机从里面抽取一个元素,应该怎么做?
> 
> whrandom.choice(alist)
> 
> _______________________________________________
> python-chinese list
> python-chinese at lists.python.cn
> http://python.cn/mailman/listinfo/python-chinese
>  

_________________________________________________________
Do You Yahoo!?
150万曲MP3疯狂搜,带您闯入音乐殿堂
http://music.yisou.com/
美女明星应有尽有,搜遍美图、艳图和酷图
http://image.yisou.com
1G就是1000兆,雅虎电邮自助扩容!
http://cn.rd.yahoo.com/mail_cn/tag/1g/*http://cn.mail.yahoo.com/event/mail_1g/


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

2004年08月09日 星期一 15:21

Xie Yanbo idkey at 163.com
Mon Aug 9 15:21:44 HKT 2004

On 2004-08-09 15:19:1092035949 +0800, mike gaul wrote:
> 看不懂,能不能解释一下。
> 这里的whrandom是什么东西?要不要先定义他?
> 谢谢!

import whrandom
whrandom.choice([1, 2, 3, 4])

OR:
import random
random.choice([1, 2, 3, 4])



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

2004年08月09日 星期一 15:26

黎达文 ldw at suntektech.com
Mon Aug 9 15:26:33 HKT 2004

去随机整数(-[0,3],然后以此随机数为下标不就行啦?!


-----邮件原件-----
发件人: python-chinese-bounces at lists.python.cn
[mailto:python-chinese-bounces at lists.python.cn] 代表 Xie Yanbo
发送时间: 2004年8月9日 15:17
收件人: chinese python
主题: Re: [python-chinese] 怎样从链表中随机抽取一个元?兀?

On 2004-08-09 15:13:1092035593 +0800, mike gaul wrote:
> 比如list = ['a','b','c','d']
> 我想随机从里面抽取一个元素,应该怎么做?

whrandom.choice(alist)

_______________________________________________
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年08月09日 星期一 15:26

mike gaul zopemaillistcn at yahoo.com.cn
Mon Aug 9 15:26:35 HKT 2004

谢谢,那再问问,
whrandom和random有什么区别呢?

 --- Xie Yanbo <idkey at 163.com> 的正文:
> On 2004-08-09 15:19:1092035949 +0800, mike gaul
> wrote:
> > 看不懂,能不能解释一下。
> > 这里的whrandom是什么东西?要不要先定义他?
> > 谢谢!
> 
> import whrandom
> whrandom.choice([1, 2, 3, 4])
> 
> OR:
> import random
> random.choice([1, 2, 3, 4])
> 
> _______________________________________________
> python-chinese list
> python-chinese at lists.python.cn
> http://python.cn/mailman/listinfo/python-chinese
>  

_________________________________________________________
Do You Yahoo!?
150万曲MP3疯狂搜,带您闯入音乐殿堂
http://music.yisou.com/
美女明星应有尽有,搜遍美图、艳图和酷图
http://image.yisou.com
1G就是1000兆,雅虎电邮自助扩容!
http://cn.rd.yahoo.com/mail_cn/tag/1g/*http://cn.mail.yahoo.com/event/mail_1g/


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

2004年08月09日 星期一 15:31

Xie Yanbo idkey at 163.com
Mon Aug 9 15:31:17 HKT 2004

On 2004-08-09 15:26:1092036395 +0800, mike gaul wrote:
> 谢谢,那再问问,
> whrandom和random有什么区别呢?

faint,其实你刚问的这些东西在 python lib documents 里面有完整的
说明呀:

  http://www.python.org/doc/current/lib/module-whrandom.html
  http://www.python.org/doc/current/lib/module-random.html

Python 提供了非常好的文档,要学会自学呀。



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

2004年08月09日 星期一 15:37

mike gaul zopemaillistcn at yahoo.com.cn
Mon Aug 9 15:37:09 HKT 2004

多谢多谢!
抱歉抱歉!
下次一定注意。
其实我也找过,找不到才问的。 :)

 --- Xie Yanbo <idkey at 163.com> 的正文:
> On 2004-08-09 15:26:1092036395 +0800, mike gaul
> wrote:
> > 谢谢,那再问问,
> > whrandom和random有什么区别呢?
> 
> faint,其实你刚问的这些东西在 python lib documents
> 里面有完整的
> 说明呀:
> 
>  
>
http://www.python.org/doc/current/lib/module-whrandom.html
>  
>
http://www.python.org/doc/current/lib/module-random.html
> 
> Python 提供了非常好的文档,要学会自学呀。
> 
> _______________________________________________
> python-chinese list
> python-chinese at lists.python.cn
> http://python.cn/mailman/listinfo/python-chinese
>  

_________________________________________________________
Do You Yahoo!?
150万曲MP3疯狂搜,带您闯入音乐殿堂
http://music.yisou.com/
美女明星应有尽有,搜遍美图、艳图和酷图
http://image.yisou.com
1G就是1000兆,雅虎电邮自助扩容!
http://cn.rd.yahoo.com/mail_cn/tag/1g/*http://cn.mail.yahoo.com/event/mail_1g/


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

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

    你的回复:

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

    Zeuux © 2024

    京ICP备05028076号