欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

python % format

程序员文章站 2022-10-04 10:53:00
python中%: 1. 求模运算,相当于mod,也就是计算除法的余数,比如5%2就得到1。 2. %还用在python的格式化输出,比如:      a = 'test'      print 'it is a %s' %(a) &nbs ......

python中%:

1. 求模运算,相当于mod,也就是计算除法的余数,比如5%2就得到1。

2. %还用在python的格式化输出,比如:
     a = 'test'
     print 'it is a %s' %(a)
     打印的结果就是 it is a test

本文章来自于的课件
python % format
python % format
python % format
python % format
python % format
python % format