format常用格式化 tp1="i am {},age {},{}".format('LittlePage',18,'boy') tp2="i am {},age {},{}".format(*['LittlePage',18,'boy'])#学过c++的感觉是{}中传入的应该是指针,视频中没讲,自己个人认为 tp3='i am {0},age {1},really{1}'.format("LittlePage",18)#从索引0开始,一直传入…
Python基础之杂货铺 字符串格式化 Python的字符串格式化有两种方式: 百分号方式.format方式 百分号的方式相对来说比较老,而format方式则是比较先进的方式,企图替换古老的方式,目前两者并存.[PEP-3101] This PEP proposes a new system for built-in string formatting operations, intended as a replacement for the existing '%' string form…