python中打印输出date信息
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python中打印输出date信息相关的知识,希望对你有一定的参考价值。
python中要打印显示linux命令行date命令的相关信息,有多种方法:
方法1:直接调用linux命令输出;同样也可以打印主机名;
[[email protected] tmp]# cat 1.py
#!/usr/bin/python
import os,commands
hostname = commands.getoutput(‘hostname‘)
date = commands.getoutput(‘date‘)
print hostname
print date
[[email protected] tmp]# python 1.py
host74
2017年 05月 25日 星期四 16:05:16 CST
方法2:和方法1执行结果一样;
[[email protected] tmp]# cat 2.py
#!/usr/bin/python
import os
os.system("date")
[[email protected] tmp]# python 2.py
2017年 05月 25日 星期四 16:06:39 CST
方法3:使用time模块ctime() 显示格式看起来不太直观;
[[email protected] tmp]# cat 2.py
#!/usr/bin/python
import time
print time.ctime()
[[email protected] tmp]# python 2.py
Thu May 25 16:05:50 2017
方法4:使用time模块,按年月日时间显示,比较直观;
[[email protected] tmp]# cat 2.py
#!/usr/bin/python
import time
print time.strftime(‘%Y-%m-%d %H:%M:%S‘,time.localtime(time.time()))
[[email protected] tmp]# python 2.py
2017-05-25 16:06:03
本文出自 “模范生的学习博客” 博客,请务必保留此出处http://mofansheng.blog.51cto.com/8792265/1929464
以上是关于python中打印输出date信息的主要内容,如果未能解决你的问题,请参考以下文章