
python基础
BILLY sean
一个自动驾驶领域的菜鸟
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
pdb.set_trace()
的 Python 内置调试模块可以轻松设置断点并调试代码!一旦代码运行到这里,它会暂停并进入交互调试模式。的位置,你可以开始调试变量和逻辑了!:继续运行直到下一个断点。运行代码后,程序会暂停在。原创 2025-07-20 17:45:58 · 222 阅读 · 0 评论 -
nohup指令
用服务器做pytorch训练时,直接跑python命令如果连接不小心断了,训练也就断了。可以在bash中使用nohup配合&来解决该问题。2表示错误,1表示标准输出,2>&1表示把标准错误定向到标准输出上,一起输出。按下Ctrl+C或者关闭终端,程序都仍然运行,需要通过kill来终止进程。训练中的标准输出将放入out.log中。按下Ctrl+C,程序依然运行。按下Ctrl+C,程序结束。nohup 指定输出文件。关闭终端,程序依然运行。原创 2025-07-20 17:40:51 · 267 阅读 · 0 评论 -
python 字典中取值
解读 xxx = np.float32( data_loaded["intrinsics"]["fisheye_parameters"].get( "xxx", 1.0))总结:这段代码的主要目的是以安全方式从字典中获取参数值,并确保值的类型是。中提取一个键值,并将其转换为单精度浮点数。它处理了键可能不存在的情况,非常实用!格式的值,用于后续计算或处理。这段代码的作用是从字典结构。这是访问嵌套字典的部分,从。)强制转换为单精度浮点类型。键不存在,则返回默认值。将获得的值(无论是实际的。原创 2025-07-20 17:36:00 · 190 阅读 · 0 评论 -
python -- index_put_
python index_put_ 用法说明原创 2025-07-03 20:23:00 · 105 阅读 · 0 评论 -
python f-string
f-string 用法。原创 2025-03-20 08:05:51 · 184 阅读 · 0 评论 -
python static_method
static_method原创 2025-03-15 18:43:08 · 137 阅读 · 0 评论 -
Python 字典(Dictionary) items(),pop(‘key‘)方法
字典(Dictionary) items(),pop('key')方法原创 2024-10-08 12:45:10 · 369 阅读 · 0 评论 -
python中zip()与zip(*)的用法解析
zip()与zip(*)的用法解析原创 2024-10-08 12:37:10 · 433 阅读 · 0 评论 -
(简单搞懂)from abc import ABC,abstractmethod是什么意思
说白了,现在我们就是要定义一些==抽象方法==,然后子类继承的时候==必须要重写==这些方法。出于这个目标,我们就要用到==abc==这个包。原创 2024-10-04 10:38:02 · 651 阅读 · 0 评论 -
plt.imshow(img_show)有什么作用
plt.imshow(img_show)有什么作用原创 2024-09-12 23:20:28 · 459 阅读 · 0 评论 -
plt.axis(‘off‘)的作用
plt.axis('off')的作用原创 2024-09-12 23:10:12 · 563 阅读 · 0 评论 -
python中使用 Matplotlib 的 GridSpec 来实现更复杂的布局控制
Matplotlib.GridSpec用法原创 2024-09-12 11:38:06 · 316 阅读 · 0 评论 -
scipy.interpolate.interp1d()函数详解
scipy.interpolate.interp1d()原创 2024-08-23 00:12:28 · 760 阅读 · 0 评论 -
Python函数参数中的冒号与箭头
函数参数中的冒号作用原创 2024-08-18 09:14:26 · 624 阅读 · 0 评论 -
python的warnings.filterwarnings(“ignore“)
python的warnings模块原创 2024-08-15 17:28:40 · 362 阅读 · 0 评论 -
python dict作为函数参数
python的字典作为函数参数原创 2024-08-14 10:24:00 · 437 阅读 · 0 评论 -
python的pathlib库
pathlib原创 2024-08-14 09:58:58 · 234 阅读 · 0 评论 -
python中hasattr()、getattr()和setattr()
hasattr()、getattr()和setattr()原创 2024-08-14 09:08:08 · 351 阅读 · 0 评论 -
importlib库介绍
importlib原创 2024-08-14 08:49:16 · 427 阅读 · 0 评论 -
hook钩子函数的使用
hook钩子函数的使用原创 2024-05-23 20:09:41 · 191 阅读 · 0 评论 -
【python基础(1)】math.ceil、math.floor、math.round
【python基础(1)】math.ceil、math.floor、math.round原创 2024-03-05 12:26:38 · 738 阅读 · 0 评论