美文网首页
字符串的链接方式

字符串的链接方式

作者: 光游骑兵 | 来源:发表于2018-10-09 09:46 被阅读0次

    字符串有多种链接方式:

        a='hello world'

        b='python'

    1."+":

        c=a+b                    return:hello world python


    2."%":

        print("打印:%s %s" % (a,b))

        return:hello worldpython

        注意:%s表示占位符,%是格式化的标志


    3."".join

        "".join('asdasd')            return:'asdasd'

        "".join(["1"],["b"])            return:'1b'

        "".join([1,2])                    return:报错

    注意:''''.join除了可以链接字符串之外还能链接列表,列表的返回值会变成字符串,而且列表中不能有数字


    4.''{}''.format(s)

        h='hello'

        w='world'

        a=  ''{} {}''format(h,w)

        return:hello world

    相关文章

      网友评论

          本文标题:字符串的链接方式

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