美文网首页
python 解包

python 解包

作者: Q_Mia | 来源:发表于2020-04-18 15:43 被阅读0次

    一个序列是一个整体,把序列中的个体元素一个一个剥离出来的过程,可以称之为解包

    1、将list中的每一个元素赋值给对应的一个变量

    name, age, date = ["Bob", 15, "1999-01-21"]

    print(name)

    print(age)

    print(date)

    2.元组

    d =1, 2, 3

    print(type(d))

    a, b, c = d

    print(a)

    print(b)

    print(c)

    3、字典

    a, b, c = {"a":1, "b":2, "c":3}

    print("a :" + a +" ,type: " +str(type(a)))

    print("b :" + b +" ,type: " +str(type(b)))

    print("c :" + c +" ,type: " +str(type(c)))

    相关文章

      网友评论

          本文标题:python 解包

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