Article

post_img

2020.3.2自我反省

摘要

保持: 1.最近的上课情况还可以 2.未来之光还可以抽时间完成 需要做的: 1.自我激励,幻想学成知识可以做到什么 2.复习知识还 …

post_img

  固定集合 frozenset

摘要

“””     固定集合 “”” f01 = frozenset([1,2,2,4]) print(type(f01)) prin ̷

post_img

day05复习

摘要

“””     day05 复习     容器         字符串:字符 不可变  序列         列表:变量  可变  …

post_img

列表推导式

摘要

“””     列表推导式嵌套 “”” list01 = [“a”, “b”, “

post_img

摘要

“””     for  for 嵌套 “”” “””     *****     *****     *

post_img

python 集合

摘要

“”” 集合 练习:exercise01 “”” 1. 创建空集合 s01 = set() 2. 创建具有默认值的集合 s01 = ̷

post_img

摘要

""" 画出下列代码内存图 """ list01 = [1,2] # …

post_img

python 2020.2.21笔记

摘要

Day02回顾 1、Linux命令 1、rm -rf 文件/目录 rm -rf * 2、cp 文件 路径 cp -r 目录 路径 …

post_img

python2.20笔记

摘要

Day01回顾 1、pwd :查看当前所在路径 2、ls ls -l :长格式/列表形式 ls -a :包含隐藏 ls -la l …