发布时间:2019-09-08 09:08:22编辑:auto阅读(1564)
python中要打印显示linux命令行date命令的相关信息,有多种方法:
方法1:直接调用linux命令输出;同样也可以打印主机名;
[root@host74 tmp]# cat 1.py
#!/usr/bin/python
import os,commands
hostname = commands.getoutput('hostname')
date = commands.getoutput('date')
print hostname
print date
[root@host74 tmp]# python 1.py
host74
2017年 05月 25日 星期四 16:05:16 CST
方法2:和方法1执行结果一样;
[root@host74 tmp]# cat 2.py
#!/usr/bin/python
import os
os.system("date")
[root@host74 tmp]# python 2.py
2017年 05月 25日 星期四 16:06:39 CST
方法3:使用time模块ctime() 显示格式看起来不太直观;
[root@host74 tmp]# cat 2.py
#!/usr/bin/python
import time
print time.ctime()
[root@host74 tmp]# python 2.py
Thu May 25 16:05:50 2017
方法4:使用time模块,按年月日时间显示,比较直观;
[root@host74 tmp]# cat 2.py
#!/usr/bin/python
import time
print time.strftime('%Y-%m-%d %H:%M:%S',time.localtime(time.time()))
[root@host74 tmp]# python 2.py
2017-05-25 16:06:03
上一篇: linux中python2.6升级2.7
下一篇: 交互式python shell之ipyt
47860
46423
37309
34755
29329
25988
24938
19965
19561
18047
5804°
6430°
5944°
5973°
7078°
5924°
5959°
6453°
6415°
7796°