Python论坛  - 讨论区

标题:[python-chinese] 国内使用python之多少

2005年06月30日 星期四 13:24

kuoxin at tjub.com.cn kuoxin at tjub.com.cn
Thu Jun 30 13:24:14 HKT 2005

各位大家好,我是一个Python的初学者,不知道在国内什么地方招Python程序员,
我好像找份工作,但无发现国内用的公司并不多啊!




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

2005年06月30日 星期四 09:16

Zoom Quiet zoom.quiet at gmail.com
Thu Jun 30 09:16:52 HKT 2005

这种问题每年都会提出来哪!
先找一下子过往邮件吧!
我们新浪长期召收各种特长的程序员,个别部门特别需要Python 的力量……
http://python.cn/pipermail/python-chinese/2005-June/011406.html

是也乎是也乎…………

在 05-6-30,kuoxin at tjub.com.cn<kuoxin at tjub.com.cn> 写道:
> 各位大家好,我是一个Python的初学者,不知道在国内什么地方招Python程序员,
> 我好像找份工作,但无发现国内用的公司并不多啊!
> 
> _______________________________________________
> python-chinese list
> python-chinese at lists.python.cn
> http://python.cn/mailman/listinfo/python-chinese
> 


-- 
[Time is unimportant, only life important!]

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

2005年06月30日 星期四 09:45

alang yin alang.yl at gmail.com
Thu Jun 30 09:45:59 HKT 2005

Zoom兄,已经是新浪人了?

有没有内幕消息?新浪说6月30号(今天)发布自己研发的搜索引擎,有这回事?

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

2005年06月30日 星期四 09:56

jam.zheng jam.zheng at achievo.com
Thu Jun 30 09:56:01 HKT 2005

各位大侠:
    __main__ -- Top-level script environment

This module represents the (otherwise anonymous) scope in which the
interpreter's main program executes -- commands read either from standard
input, from a script file, or from an interactive prompt. It is this
environment in which the idiomatic ``conditional script'' stanza causes a
script to run:


if __name__ == "__main__":
    main()
能帮我解释一下吗?


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

2005年06月30日 星期四 10:20

jam.zheng jam.zheng at achievo.com
Thu Jun 30 10:20:37 HKT 2005

各位大侠:
    __main__ -- Top-level script environment
This module represents the (otherwise anonymous) scope in which the
interpreter's main program executes -- commands read either from standard
input, from a script file, or from an interactive prompt. It is this
environment in which the idiomatic ``conditional script'' stanza causes a
script to run:
if __name__ == "__main__":
    main()

能帮我解释一下吗?


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

2005年06月30日 星期四 11:30

limodou limodou at gmail.com
Thu Jun 30 11:30:38 HKT 2005

zoomquiet早就是了,才知道呀:) 其实这个邮件列表还有一些人也是。

在 05-6-30,alang yin<alang.yl at gmail.com> 写道:
> Zoom兄,已经是新浪人了?
> 
> 有没有内幕消息?新浪说6月30号(今天)发布自己研发的搜索引擎,有这回事?
> 
> _______________________________________________
> python-chinese list
> python-chinese at lists.python.cn
> http://python.cn/mailman/listinfo/python-chinese
> 
> 
> 


-- 
I like python! 
My Donews Blog: http://www.donews.net/limodou
New Google Maillist: http://groups-beta.google.com/group/python-cn

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

2005年06月30日 星期四 11:39

Zoom Quiet zoom.quiet at gmail.com
Thu Jun 30 11:39:58 HKT 2005

你 dir() 一下子当前的名称空间就知道
__name__ 是Python 对象的内置属性

当其为"__main__" 时,表明其是单独被调用的,
若一个脚本是作为模块被其它脚本import 的,则 __name__ 不会是 "__main__"
一般来讲,

> if __name__ == "__main__":
>     main()

是作为开发当中,自测试代码的组织



在 05-6-30,jam.zheng<jam.zheng at achievo.com> 写道:
> 各位大侠:
>     __main__ -- Top-level script environment
> 
> This module represents the (otherwise anonymous) scope in which the
> interpreter's main program executes -- commands read either from standard
> input, from a script file, or from an interactive prompt. It is this
> environment in which the idiomatic ``conditional script'' stanza causes a
> script to run:
> 
> if __name__ == "__main__":
>     main()
> 能帮我解释一下吗?
> 
> _______________________________________________
> python-chinese list
> python-chinese at lists.python.cn
> http://python.cn/mailman/listinfo/python-chinese
> 


-- 
[Time is unimportant, only life important!]

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

2005年06月30日 星期四 12:31

epaulin epaulin at gmail.com
Thu Jun 30 12:31:08 HKT 2005

已经发布了吧,昨天逛 sina ,无意间见到过;

On 6/30/05, alang yin <alang.yl at gmail.com> wrote:
> Zoom兄,已经是新浪人了?
> 
> 有没有内幕消息?新浪说6月30号(今天)发布自己研发的搜索引擎,有这回事?
> 
> _______________________________________________
> 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年06月30日 星期四 15:52

alang yin alang.yl at gmail.com
Thu Jun 30 15:52:38 HKT 2005

的确是才知道。前不久有个新浪团队在这里招人。不知Zoom是不是在这之前去的?

http://iask.com/刚看了,搜索能力持保留态度。

Zoom兄打听一下是用什么做的cgi吧。好奇呵呵。

前天看到消息,说Yahoo!正在重写它的email服务,可能要变得像gmail一样更方便,更像一个桌面程序。
我只知道Yahoo!的mail服务是用Python在短短的三个月的时间之内实现出来的。当然这不包括系统架构的时间。
新版本不知会用什么语言来写。

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

2005年06月30日 星期四 19:13

Zoom Quiet zoom.quiet at gmail.com
Thu Jun 30 19:13:20 HKT 2005

其实从Python 本身的特性也可以看出国内企业使用Python 的尴尬:
Python 适合问题域非常精细,没有复杂的事务逻辑的场合,而且对于系统的线程控制要求高的地方:
比如说:数据转换;多种应用平台间的数据,指令翻译;系统管理;系统信息采集,响应……

而国内有哪些地方大规模的需要这样的应用?

就新浪这样的大型门户服务商,
客户端前端一定是JS,就象Gmail 一样,不可能使用 需要安装插件的ActiveX 之类的技术来完成一定的客户端交互;
Web 层,一定是PHP 这样成熟的,可以快速开发,维护的高效动态展示层;
为客户提供桌面工具的,只能是C++ 或是 Delphi 进行快速开发;甚至于VB 也可以接受;
系统级别的调整,优化只能是C,其它什么也用不了;
只有在系统和 web层之间,大量的基础性工作,需要快速解决问题时,Python 是不可替代的…………!



在 05-6-30,epaulin<epaulin at gmail.com> 写道:
> 已经发布了吧,昨天逛 sina ,无意间见到过;
> 
> On 6/30/05, alang yin <alang.yl at gmail.com> wrote:
> > Zoom兄,已经是新浪人了?
> >
> > 有没有内幕消息?新浪说6月30号(今天)发布自己研发的搜索引擎,有这回事?
> >
> > _______________________________________________
> > 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
> 
> 
> 


-- 
[Time is unimportant, only life important!]

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

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

    你的回复:

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

    Zeuux © 2025

    京ICP备05028076号