博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
python实例[判断操作系统类型]
阅读量:5822 次
发布时间:2019-06-18

本文共 970 字,大约阅读时间需要 3 分钟。

参考文献:

经常地我们需要编写跨平台的脚本,但是由于不同的平台的差异性,我们不得不获得当前所工作的平台(操作系统类型)。

import platformdef TestPlatform():    print ("----------Operation System--------------------------")    #Windows will be : (32bit, WindowsPE)    #Linux will be : (32bit, ELF)    print(platform.architecture())    #Windows will be : Windows-XP-5.1.2600-SP3 or Windows-post2008Server-6.1.7600    #Linux will be : Linux-2.6.18-128.el5-i686-with-redhat-5.3-Final    print(platform.platform())    #Windows will be : Windows    #Linux will be : Linux    print(platform.system())    print ("--------------Python Version-------------------------")    #Windows and Linux will be : 3.1.1 or 3.1.3    print(platform.python_version())def UsePlatform():  sysstr = platform.system()  if(sysstr =="Windows"):    print ("Call Windows tasks")  elif(sysstr == "Linux"):    print ("Call Linux tasks")  else:    print ("Other System tasks")    UsePlatform()//方法1
TestPlatform()//方法2

我安装了python以后,使用python GUI打开以后执行上述方法,其输出结果如下图所示。

转载地址:http://dmfdx.baihongyu.com/

你可能感兴趣的文章
验证DataGridView控件的数据输入
查看>>
POJ1033
查看>>
argparse - 命令行选项与参数解析(转)
查看>>
一维数组
查看>>
Linux学习笔记之三
查看>>
修改上一篇文章的node.js代码,支持默认页及支持中文
查看>>
Php实现版本比较接口
查看>>
删除设备和驱动器中软件图标
查看>>
第四章 TCP粘包/拆包问题的解决之道---4.1---
查看>>
html语言
查看>>
从源码看集合ArrayList
查看>>
spring-boot支持websocket
查看>>
菜鸟笔记(一) - Java常见的乱码问题
查看>>
我理想中的前端工作流
查看>>
记一次Git异常操作:将多个repository合并到同一repository的同一分支
查看>>
CodeIgniter 3.0 新手捣鼓源码(一) base_url()
查看>>
Chrome 广告屏蔽功能不影响浏览器性能
查看>>
vSphere 6将于2月2日全球同步发表
查看>>
Android状态栏实现沉浸式模式
查看>>
让你的APP实现即时聊天功能
查看>>