码迷,mamicode.com
首页 > 编程语言 > 详细

python函数积累

时间:2020-03-31 19:14:58      阅读:55      评论:0      收藏:0      [点我收藏+]

标签:string   index   cookie   content   dex   python   for   pre   tin   

给定前后字符串获取中间字符串

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函数积累

标签:string   index   cookie   content   dex   python   for   pre   tin   

原文地址:https://www.cnblogs.com/BobHuang/p/12607357.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!