Day1——囚牛
2020-07-18 本文已影响0人
sicau_wq
学习小组正确打开方式
1.如何学习
2.怎样解决学习中遇到的问题
1.搜索
引擎 教程 谷歌、必应、虫部落快搜 搜狗微信、搜狗知乎、简书、github 2.学习小组讨论
3.正确的提问
注意事项 1、礼貌提问使用截图 2、尽量微信群提问 3、搜索无效后再提问
如何搭建高效学习平台
1.效率软件
引擎 教程 浏览器 chrome 电脑文件搜索 Everything 截图软件 snipaste 通讯软件 电脑版微信 2.学习流程——从思维导图到学习笔记
1.思维导图软件
幕布
xmind
2.电子版笔记
简书
markedown重要格式实现
1.级别标题
这是三级标题
这是四级标题
这是五级标题
2.加粗
这是加粗,这是斜体。
3.代码块
下面是一句代码示例
print("hello,world!")
下面是一段代码示例(广度优先搜索算法实现)
from collections import deque
graph={}
graph["you"]=["bob","claire","alice"]
graph["bob"]=["anuj","peggy"]
graph["claire"]=["thom","jonny"]
graph["alice"]=["peggy"]
graph["anuj"]=[]
graph["peggy"]=[]
graph["thom"]=[]
def person_is_seller(name):
return name[-1]=='m'
def search(name):
search_queue=deque()
search_queue+=graph[name]
searched=[]
while search_queue:
person=search_queue.popleft()
if person not in searched:
if person_is_seller(person):
print(person+" is a mango seller!")
return True
else:
search_queue+=graph[person]
searched.append(person)
return False
search("you")
4.插入图片
[图片上传失败...(image-6331e1-1595034463025)]
98845459-capsicum-genus-plants-peppers-annuum-baccatum-chinense-frutescens-pubescens-species-clipping-paths.jpg