Python 自动化运维3-基础篇

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python 自动化运维3-基础篇相关的知识,希望对你有一定的参考价值。

Python语言之Print输出方法

Print 输出方法:
‘-‘ 表示左对齐
‘+‘ 表示正号
‘0‘ 表示用0填充
‘f‘ 前指定一个最小宽度
‘.‘ 指定小数点后的精度
格式:% [flag][width][.precision]typecode
方法1:
1.num = 7.9 print ‘the num is %f‘ % num
2.num = 7.9 num2 = 10 print ‘the num is %f and %d‘ % (num,num2)
3.num = 7.9 num2 = 10 print ‘the num is %f and %d‘ % (num,3)
方法2:
4.num = 7.9 num2 = 10 print ‘the nums is {0} and {1} . format{num,num2}
方法3:
lang = "python"
print "I love %(program)s" % {"program": lang}


以上是关于Python 自动化运维3-基础篇的主要内容,如果未能解决你的问题,请参考以下文章

自动化运维Python系列之基础篇

Python自动化运维之路Day5基础篇

Python运维开发基础01-语法基础

自动化运维之ansible-安装部署与基础命令篇

自动化运维Saltstack系列之基础功能篇

python面试题库——1Python基础篇(80题)