2026年06月20日的文章

Python解包语法-胡宗胜的个人博客👤

Python解包语法

什么是Python解包语法 简单的例子 刚好数目能对应时 fruits = ['apple', 'banana', 'cherry'] fruit_1 , fruit_2 , fruit_3 = fruits print(fruit_1 , fruit_2 , fruit_3 ) 输出: apple banana...
胡宗胜的头像-胡宗胜的个人博客👤钻石会员huzongsheng前天
0329