特牛生活网

Python中的格式化输出——%标记_python integer %d-CSDN博客

网友收藏
文章浏览阅读3.9k次,点赞6次,收藏24次。格式化输出按照语法类型分为几类,这里单将%标记。1. string用%s,integer用%d,float用%f输入:print('My name is %s' % 'Leo')print('We have %d guests here today.' % 30)print('The average of 4 and 5 is %f' % 4.5)输出:My nam..._python integer %d