美文网首页
python函数得到的结果类型居然为tuple

python函数得到的结果类型居然为tuple

作者: 远行_2a22 | 来源:发表于2019-12-18 21:57 被阅读0次
    def test_fun():
        return {'jack':23}
    
    if __name__ == '__main__':
        result = test_fun(),
        print('result:', result)
                
    

    输出

    ('result:', ({'jack': 23},))
    

    结果居然为tuple类型。原来是不小心多了个逗号


    image.png

    相关文章

      网友评论

          本文标题:python函数得到的结果类型居然为tuple

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