New: tupleAll contenthive-129948hive-196917krhive-150122steemhive-180932hive-166405zzanphotographyhive-183959hive-185836hive-188619hive-144064hive-183397hive-101145uncommonlabhive-145157hive-103599hive-184714hive-193637hive-180106hive-138689hive-150943bitcoinhive-179660TrendingNewHotLikersshiziwen (36)in python • 5 years agopython中的数组和列表这边文章,介绍一下Python 中最常见的两种数据结构:列表(list)和元组(tuple)。 相同点 可以放置任意数据类型的有序集合 Python 中的列表和元组都支持负数索引 列表和元组都支持切片操作 可以随意嵌套 差异性 列表是动态的、可变的,而元组是静态的、不可变的…castor.kim (25)in scala • 7 years agoscala에서 삼항 연산자 쓰기.scala를 쓰면서 가장 불편했던 것은 삼항 연산자가 없다는것이다. 그래서 이를 좀 편하게 하기 위한 고민을한 결과 implicit method를 활용하면 좀 간편히 작성이 가능할 것 같았다. val age = 5