Python论坛  - 讨论区

标题:[python-chinese] 请教如何获取操作系统的相关信息

2006年07月31日 星期一 15:58

pathfinder pathfinder.name at gmail.com
Mon Jul 31 15:58:57 HKT 2006

主要指操作系统的名称、架构、版本等信息。

在JAVA中要获取这些信息,可以通过System.getProperty(String)方法,但我不知
道在python该如何处理。

我找到sys模块,但发现好象只有一个platform属性,返回的信息太少。
不知道python是否有简单的方法能获取到这些信息吗?

谢谢诸位!


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

2006年07月31日 星期一 16:08

limodou limodou at gmail.com
Mon Jul 31 16:08:14 HKT 2006

On 7/31/06, pathfinder <pathfinder.name at gmail.com> wrote:
> 主要指操作系统的名称、架构、版本等信息。
>
> 在JAVA中要获取这些信息,可以通过System.getProperty(String)方法,但我不知
> 道在python该如何处理。
>
> 我找到sys模块,但发现好象只有一个platform属性,返回的信息太少。
> 不知道python是否有简单的方法能获取到这些信息吗?
>
> 谢谢诸位!
>

调用shell命令吧。


-- 
I like python!
My Blog: http://www.donews.net/limodou
My Django Site: http://www.djangocn.org
NewEdit Maillist: http://groups.google.com/group/NewEdit

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

2006年07月31日 星期一 16:14

pathfinder pathfinder.name at gmail.com
Mon Jul 31 16:14:56 HKT 2006

limodou 写道:
> On 7/31/06, pathfinder <pathfinder.name at gmail.com> wrote:
>> 主要指操作系统的名称、架构、版本等信息。
>>
>> 在JAVA中要获取这些信息,可以通过System.getProperty(String)方法,但我不知
>> 道在python该如何处理。
>>
>> 我找到sys模块,但发现好象只有一个platform属性,返回的信息太少。
>> 不知道python是否有简单的方法能获取到这些信息吗?
>>
>> 谢谢诸位!
>>
>
> 调用shell命令吧。
>
这个不太好吧,不同的操作系统的shell命令又不一样,这个该怎么调?我的程序
需要在linux、solaris、windows下运行,而且有的是 32位CPU的,有的是64位CPU
的,这个该怎么办?
>
> ------------------------------------------------------------------------
>
> _______________________________________________
> 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年07月31日 星期一 16:24

wang yingqi wangyingqi at gmail.com
Mon Jul 31 16:24:41 HKT 2006

os.system("uname -a")

另:python2.4文档中的6.30中介绍的方法为啥用不了?


On 7/31/06, limodou <limodou at gmail.com> wrote:
>
> On 7/31/06, pathfinder <pathfinder.name at gmail.com> wrote:
> > 主要指操作系统的名称、架构、版本等信息。
> >
> > 在JAVA中要获取这些信息,可以通过System.getProperty(String)方法,但我不知
> > 道在python该如何处理。
> >
> > 我找到sys模块,但发现好象只有一个platform属性,返回的信息太少。
> > 不知道python是否有简单的方法能获取到这些信息吗?
> >
> > 谢谢诸位!
> >
>
> 调用shell命令吧。
>
>
> --
> I like python!
> My Blog: http://www.donews.net/limodou
> My Django Site: http://www.djangocn.org
> NewEdit Maillist: http://groups.google.com/group/NewEdit
>
> _______________________________________________
> 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
>
>


-- 
wangyingqi
c++/python/palm/
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20060731/72f44317/attachment.htm

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

2006年07月31日 星期一 16:33

pathfinder pathfinder.name at gmail.com
Mon Jul 31 16:33:49 HKT 2006

wang yingqi 写道:
> os.system("uname -a")
>  
> 另:python2.4文档中的6.30中介绍的方法为啥用不了?
>

啊哈,6.30正是我要找的。太感谢了!
不好意思,我对Python不熟,且没有认真的查阅python2.4的文档。真对不起浪费
了大家的时间!!!

>  
> On 7/31/06, *limodou* <limodou at gmail.com limodou at gmail.com>>
> wrote:
>
>     On 7/31/06, pathfinder <pathfinder.name at gmail.com
>     pathfinder.name at gmail.com>> wrote:
>     > 主要指操作系统的名称、架构、版本等信息。
>     >
>     > 在JAVA中要获取这些信息,可以通过System.getProperty(String)方法,
>     但我不知
>     > 道在python该如何处理。
>     >
>     > 我找到sys模块,但发现好象只有一个platform属性,返回的信息太少。
>     > 不知道python是否有简单的方法能获取到这些信息吗?
>     >
>     > 谢谢诸位!
>     >
>
>     调用shell命令吧。
>
>
>     --
>     I like python!
>     My Blog: http://www.donews.net/limodou
>     My Django Site: http://www.djangocn.org <http://www.djangocn.org>
>     NewEdit Maillist: http://groups.google.com/group/NewEdit
>
>     _______________________________________________
>     python-chinese
>     Post: send python-chinese at lists.python.cn
>     python-chinese at lists.python.cn>
>     Subscribe: send subscribe to
>     python-chinese-request at lists.python.cn
>     python-chinese-request at lists.python.cn>
>     Unsubscribe: send unsubscribe to  
>     python-chinese-request at lists.python.cn
>     python-chinese-request at lists.python.cn>
>     Detail Info: http://python.cn/mailman/listinfo/python-chinese
>
>
>
>
> -- 
> wangyingqi
> c++/python/palm/
> ------------------------------------------------------------------------
>
> _______________________________________________
> 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年07月31日 星期一 16:33

limodou limodou at gmail.com
Mon Jul 31 16:33:51 HKT 2006

On 7/31/06, pathfinder <pathfinder.name at gmail.com> wrote:
> limodou 写道:
> > On 7/31/06, pathfinder <pathfinder.name at gmail.com> wrote:
> >> 主要指操作系统的名称、架构、版本等信息。
> >>
> >> 在JAVA中要获取这些信息,可以通过System.getProperty(String)方法,但我不知
> >> 道在python该如何处理。
> >>
> >> 我找到sys模块,但发现好象只有一个platform属性,返回的信息太少。
> >> 不知道python是否有简单的方法能获取到这些信息吗?
> >>
> >> 谢谢诸位!
> >>
> >
> > 调用shell命令吧。
> >
> 这个不太好吧,不同的操作系统的shell命令又不一样,这个该怎么调?我的程序
> 需要在linux、solaris、windows下运行,而且有的是 32位CPU的,有的是64位CPU
> 的,这个该怎么办?
> >
就是因为这样,所以python中才不好提供。这部分东西不好跨平台。

-- 
I like python!
My Blog: http://www.donews.net/limodou
My Django Site: http://www.djangocn.org
NewEdit Maillist: http://groups.google.com/group/NewEdit

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

2006年07月31日 星期一 16:39

Roger Zheng roger.zheng at gmail.com
Mon Jul 31 16:39:58 HKT 2006

uname -a 是*nix下的命令,在windows下不能用吧

On 7/31/06, pathfinder <pathfinder.name at gmail.com> wrote:
> wang yingqi 写道:
> > os.system("uname -a")
> >
> > 另:python2.4文档中的6.30中介绍的方法为啥用不了?
> >
>
> 啊哈,6.30正是我要找的。太感谢了!
> 不好意思,我对Python不熟,且没有认真的查阅python2.4的文档。真对不起浪费
> 了大家的时间!!!
>
> >
> > On 7/31/06, *limodou* <limodou at gmail.com limodou at gmail.com>>
> > wrote:
> >
> >     On 7/31/06, pathfinder <pathfinder.name at gmail.com
> >     pathfinder.name at gmail.com>> wrote:
> >     > 主要指操作系统的名称、架构、版本等信息。
> >     >
> >     > 在JAVA中要获取这些信息,可以通过System.getProperty(String)方法,
> >     但我不知
> >     > 道在python该如何处理。
> >     >
> >     > 我找到sys模块,但发现好象只有一个platform属性,返回的信息太少。
> >     > 不知道python是否有简单的方法能获取到这些信息吗?
> >     >
> >     > 谢谢诸位!
> >     >
> >
> >     调用shell命令吧。
> >
> >
> >     --
> >     I like python!
> >     My Blog: http://www.donews.net/limodou
> >     My Django Site: http://www.djangocn.org <http://www.djangocn.org>
> >     NewEdit Maillist: http://groups.google.com/group/NewEdit
> >
> >     _______________________________________________
> >     python-chinese
> >     Post: send python-chinese at lists.python.cn
> >     python-chinese at lists.python.cn>
> >     Subscribe: send subscribe to
> >     python-chinese-request at lists.python.cn
> >     python-chinese-request at lists.python.cn>
> >     Unsubscribe: send unsubscribe to
> >     python-chinese-request at lists.python.cn
> >     python-chinese-request at lists.python.cn>
> >     Detail Info: http://python.cn/mailman/listinfo/python-chinese
> >
> >
> >
> >
> > --
> > wangyingqi
> > c++/python/palm/
> > ------------------------------------------------------------------------
> >
> > _______________________________________________
> > 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
>


-- 
Regards!

Roger Zheng

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

2006年07月31日 星期一 16:57

solock zjprint at gmail.com
Mon Jul 31 16:57:47 HKT 2006

请问一下我相买纸的python书籍,各位有什么推荐的?
希望推荐一本python,再来一本GUI组件的书籍(例如tkinter之类)。
我是很菜的新手,谢谢各位!

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

2006年07月31日 星期一 17:20

yi huang yi.codeplayer at gmail.com
Mon Jul 31 17:20:21 HKT 2006

现在能不能在市面上找到python的纸书就是个问题.


-- 
http://codeplayer.blogbus.com/
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20060731/56931dcc/attachment.htm

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

2006年07月31日 星期一 17:38

solock zjprint at gmail.com
Mon Jul 31 17:38:11 HKT 2006

是啊,我在china-pub上看到的全部是绝版,当场翻倒。
  -----原始邮件-----
  发件人: python-chinese-bounces at lists.python.cn [mailto:python-chinese-bounces at lists.python.cn]代表 yi huang
  发送时间: 2006年7月31日 17:20
  收件人: python-chinese at lists.python.cn
  主题: Re: 答复: [python-chinese] 请教如何获取操作系统的相关信?


  现在能不能在市面上找到python的纸书就是个问题.


  -- 
  http://codeplayer.blogbus.com/ 
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20060731/9e1f7f4c/attachment.html

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

2006年07月31日 星期一 17:49

ainulinde ainulinde at gmail.com
Mon Jul 31 17:49:28 HKT 2006

如果英文的,而且可以买到的话。
推荐七月份出来的 python in a nutshell 第二版
 和三月份的wxpython in action。



On 7/31/06, solock <zjprint at gmail.com> wrote:
> 请问一下我相买纸的python书籍,各位有什么推荐的?
> 希望推荐一本python,再来一本GUI组件的书籍(例如tkinter之类)。
> 我是很菜的新手,谢谢各位!
> _______________________________________________
> 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年07月31日 星期一 19:30

makeyunbad makeyunbad at gmail.com
Mon Jul 31 19:30:24 HKT 2006

2006/7/31, pathfinder <pathfinder.name at gmail.com>:
> 主要指操作系统的名称、架构、版本等信息。
>

windows操作系统可以通过WMI来获得这些信息

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

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

    你的回复:

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

    Zeuux © 2025

    京ICP备05028076号