美文网首页自动化学习-python
python-基础题目:字符串解压缩

python-基础题目:字符串解压缩

作者: 种树在此时 | 来源:发表于2018-10-30 23:58 被阅读0次

    #把字符串a='3[ab]acc',解压成‘abababacc’

    a='3[ab]acc'

    b = a.split(']')[0]

    c = b.split('[')

    d=int(c[0])*c[1]

    e = d+a.a.split(']')[1]

    print(e)

    相关文章

      网友评论

        本文标题:python-基础题目:字符串解压缩

        本文链接:https://www.haomeiwen.com/subject/aukqnttx.html