python基础学习笔记——Python基础教程(第2版 修订版)第三章(字符串)
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python基础学习笔记——Python基础教程(第2版 修订版)第三章(字符串)相关的知识,希望对你有一定的参考价值。
#字符串
‘%s plus %s equals %s‘%(1,2,3) %10f %pi %10.2f %5s %‘guido van poee %.*s %(5,‘gjffuygv‘)
%010.2 0000003.14
%-10.2f
#字符串方法
string.letters 包含所有字母的字符串
#find title.find("sdf") 没有返回-1
#join 添加元素
#lower
#replace(”isj,"ss")
#’1+2+3+4‘。split(“+”)
以上是关于python基础学习笔记——Python基础教程(第2版 修订版)第三章(字符串)的主要内容,如果未能解决你的问题,请参考以下文章
python基础学习笔记——Python基础教程(第2版 修订版)第八章(异常)
python基础学习笔记——Python基础教程(第2版 修订版)第一章