1. 引入模块
import os
2. 使用判断
if expression :
statement1
else :
statement2
3. 使用模块
1) 使用模块中的变量
os.name
2) 使用模块中方法
os.system()
4. code
helloworld.py
'''
Created on Dec 11, 2018
@author: xiaobin
'''
import os
'''
#! /usr/bin/perl
$cmd="ls";
system($cmd);
##chmod
$myStr2 = 'world';
print 'Hello $myStr2'."\n"
'''
cmd = "name"
if os.name == "nt" :
cmd = "dir /w"
else :
cmd = "ls -l"
print ('----'),
print (cmd),
print ('----')
os.system(cmd)
myStr2 = 'world'
print('Hello ' + myStr2)
5. 效果图
1) windows
c:\python38\python.exe helloworld.py
2) linux(ubuntu)