摘要: 1. Git-2.18.0-64-bit/Git-2.24.2-64-bit(另有 GitHubDesktop、PortableGit-2.24.1.2-64-bit)工具2. Git clone https://github.com/youngyangyang04/leetcode-master 阅读全文
posted @ 2021-11-21 16:51 CDPJ 阅读(35) 评论(0) 推荐(0) 编辑
摘要: print('*'*20) c = [1,2,3,[4]] #注意元素的形式:没加引号 print('c = ', c ) c[-1].append(5) ##采用切片形式增加元素时,list[-1].append(x),只能对列表中的元素本身为列表形式时进行增加,否则会报错 print(c) pr 阅读全文
posted @ 2021-11-21 16:29 CDPJ 阅读(278) 评论(0) 推荐(0) 编辑