python-基础-字符串-列表-元祖-字典
1 字符串1.1 下标和切片 1.2 切片1.3 字符串常见操作如有字符串mystr = 'hello world itcast and itcastcpp',以下是常见的操作<1>find检测 str 是否包含在 mystr中,如果是返回开始的索引值,否则返回-1mystr.find(str, start=0, end=len...