美文网首页
python字典的使用

python字典的使用

作者: 今天天气很好嗯 | 来源:发表于2019-01-29 18:08 被阅读0次

    字典以及元组的使用:

    元组 数据 不可变

    tuple = (1,'我了去',12.65)
    
    print('tuple的值',tuple)
    
    print('字典~~~~~~~~~~~~~~~')
    
    dict = {'name':'weather','age':20}
    
    print('dict',dict['name'])
    

    相关文章

      网友评论

          本文标题:python字典的使用

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