python函数积累
Posted BobHuang
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python函数积累相关的知识,希望对你有一定的参考价值。
给定前后字符串获取中间字符串
def GetMiddleStr(content,startStr,endStr):
startIndex = content.index(startStr)
if startIndex>=0:
startIndex += len(startStr)
endIndex = content.index(endStr)
return content[startIndex:endIndex]
cookie字符串转换为字典
def stringToDict(cookie):
itemDict = {}
items = cookie.split(‘;‘)
for item in items:
key = item.split(‘=‘)[0].replace(‘ ‘, ‘‘)
value = item.split(‘=‘)[1]
itemDict[key] = value
return itemDict
以上是关于python函数积累的主要内容,如果未能解决你的问题,请参考以下文章