Python Day196(字符串的格式化)复盘

两种格式化方式

Python的字符串格式化有两种方式:%格式符方式,format方式。

以往的练习中多次用到,在时间练习中这两种方式都涉及到:


今日习题

作业戳,看班长的解析。
今日练习%格式符方式操作的简单习题:


代码

# Hello World program in Python
#-*- coding: utf8 -*-
import os,sys
say='hello!'
say1=say+'Morning!'
print(say1,'len',len(say1))
say2='%s%s'%(say,'Candice!')
print(say2,'len',len(say2))
say3='%s%d len'%(say2,len(say2))
print(say)

你可能感兴趣的:(Python Day196(字符串的格式化)复盘)