上一页 1 2 3 4 5 6 ··· 12 下一页
摘要: Qt的简单使用: https://www.cnblogs.com/carsonzhu/p/10815654.html 一个案例: 图像处理仿真平台 https://blog.csdn.net/qq_37340229/article/details/128685044 该系统主要针对医学 超声图像进行 阅读全文
posted @ 2023-09-27 14:10 Aneverforget 阅读(17) 评论(0) 推荐(0) 编辑
摘要: 一、 https://blog.csdn.net/CH_monsy/article/details/108001875 二、 三、 https://zhuanlan.zhihu.com/p/83598756 : 四、 五、 六: 七、 八、 一、安装ubuntu18.04 1、Ubuntu18.04 阅读全文
posted @ 2023-09-27 13:57 Aneverforget 阅读(13) 评论(0) 推荐(0) 编辑
摘要: class Solution: def simplifyPath(self, path: str) -> str: li=path.split("/") res=[] for i in li: if i=='..' and res: res.pop() if i!='.' and i!='..' a 阅读全文
posted @ 2023-09-17 17:19 Aneverforget 阅读(3) 评论(0) 推荐(0) 编辑
摘要: class Solution: def canCompleteCircuit(self, gas: List[int], cost: List[int]) -> int: n=len(gas) max_gas=0 rest=0 records=[] start=0 for i in range(n) 阅读全文
posted @ 2023-09-17 15:47 Aneverforget 阅读(1) 评论(0) 推荐(0) 编辑
摘要: 福昕高级PDF编辑器安装激活教程(绝对免费)_哔哩哔哩_bilibili 萝卜官网补丁下载:https://www.carrotchou.com/1593.htmlUP的网盘下载:链接:https://pan.baidu.com/s/1VKMsjqlb-K9KySS3HGdlhA 提取码:5gt4 阅读全文
posted @ 2023-09-07 13:40 Aneverforget 阅读(54) 评论(0) 推荐(0) 编辑
摘要: Python3中的保留字(关键字) | AmosCloud Wiki 阅读全文
posted @ 2023-09-06 15:04 Aneverforget 阅读(55) 评论(0) 推荐(0) 编辑
摘要: 4.4 Python类的高级特性 | AmosCloud Wiki 阅读全文
posted @ 2023-09-06 15:02 Aneverforget 阅读(5) 评论(0) 推荐(0) 编辑
摘要: 2.4 Python函数式编程特性 | AmosCloud Wiki 解释了为何装饰器需要两个return. 一个return是返回函数名,这是相当于改写了函数名;幸运的是python提供了一个函数functools.wraps解决了这个问题。 另一个return 返回函数操作结果。 特殊地,有方法 阅读全文
posted @ 2023-09-06 11:41 Aneverforget 阅读(5) 评论(0) 推荐(0) 编辑
摘要: lamda简单构建函数: 冒号“:"前为输入,后为输出 2.4 Python函数式编程特性 | AmosCloud Wiki 阅读全文
posted @ 2023-09-06 10:41 Aneverforget 阅读(5) 评论(0) 推荐(0) 编辑
摘要: 列表可转化成迭代器,iteration=iter(list) 生成器是一个用yeild返回的函数 2.2 Python循环结构与迭代器 | AmosCloud Wiki 阅读全文
posted @ 2023-09-06 10:31 Aneverforget 阅读(9) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 12 下一页