美文网首页
2021-01-12python基础语法

2021-01-12python基础语法

作者: Cipolee | 来源:发表于2021-01-13 18:37 被阅读0次
    • 写类内部函数调用用self.函数名
    • 函数书写格式

    def 函数名(self,a:int)->int
    def 函数名(self,matrix:List[List[int]])->List[int]

    • 常见函数去长度
      使用List合成的矩阵同样使用len拆分
      如matrix:List[List[int]]
      应该是从外向内拆分的,list[0]是第一行
      字符串len()
      List len()
    • 矩阵中的zip函数
      zip()压缩,两列表按行加,列表加成
      zip(*元组列表)解压缩,元组拆分
      zip函数回改变调用的参数

    相关文章

      网友评论

          本文标题:2021-01-12python基础语法

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