最新发布第12页
SUSAR 上传错误-Stewed Noodles 资源

SUSAR 上传错误

时间格式 严重事件发生时间格式 2024/01/03或者 NA,不能是其它格式,比如 2024-01-03。 Excel 单元格换行 Excel 单元格中,不能出现换行。 单元格出现换行 转归列 转归所在的列为单选,选项出...
jiulinxiri的头像-Stewed Noodles 资源烩之面大会员jiulinxiri8个月前
0330
Day 20 - 贪吃蛇(上)-Stewed Noodles 资源

Day 20 – 贪吃蛇(上)

设置游戏屏幕 from turtle import Screen screen = Screen() # 设置屏幕大小 screen.setup(width=600, height=600) # 设置背景颜色 screen.bgcolor('black') # 设置标题 screen.title('贪吃蛇')...
jiulinxiri的头像-Stewed Noodles 资源烩之面大会员jiulinxiri2年前
0320
iOS 其它相关知识-Stewed Noodles 资源

iOS 其它相关知识

版本管理 Xcode 快捷键 添加 emoji:Command + Control + Space 提交代码:Command + Option + C 显示或隐藏左侧导航窗口:Command + 0 显示或隐藏预览画布:Command + Option + Return
jiulinxiri的头像-Stewed Noodles 资源烩之面大会员jiulinxiri1年前
0320
MatPlotLib 的使用-Stewed Noodles 资源

MatPlotLib 的使用

MatPlotLib 的作用是绘制2D/3D图形,让深度学习可视化。具体的使用步骤 引入MatPlotLib库 使用MatPlotLib绘制图像 重要概念 Figure(画布) Axes(坐标轴) 基本流程 MatplotLib库使用流程 创建...
jiulinxiri的头像-Stewed Noodles 资源烩之面大会员jiulinxiri10个月前
0320
Windows 安装 Dify-Stewed Noodles 资源

Windows 安装 Dify

软硬件要求硬件: CPU >= 2Core ; RAM >= 4GiB软件: 操作系统 Windows with WSL 2 enabled; Docker DesktopWSL 2 仅在 Windows 11 或 Windows 10 版本 1903、内部版本 18362 或更高版本中...
jiulinxiri的头像-Stewed Noodles 资源烩之面大会员jiulinxiri2年前
0310
Day 5 - 循环-Stewed Noodles 资源

Day 5 – 循环

for 循环 for 循环的基本语法,如下所示 for item in list_of_items: # do something to each item 示例代码 fruits = ['Apple', 'Peach', 'Pear'] for fruit in fruits: print(fruit) # Apple ...
jiulinxiri的头像-Stewed Noodles 资源烩之面大会员jiulinxiri2年前
0310
How to call async throwing functions 如何调用异步 throwing 函数-Stewed Noodles 资源

How to call async throwing functions 如何调用异步 throwing 函数

Just like their synchronous counterparts, Swift’s async functions can be throwing or non-throwing depending on how you want them to behave. However, there is a twist: although we ...
Widgets-Stewed Noodles 资源

Widgets

CheckBox 复选框的样式 <CheckBox android:id='@+id/check_box' android:layout_width='0dp' android:layout_height='wrap_content' android:layout_marginTop='101dp' android:text='苹果🍎...
jiulinxiri的头像-Stewed Noodles 资源烩之面大会员jiulinxiri5个月前
0310
Day 8 - 函数参数-Stewed Noodles 资源

Day 8 – 函数参数

有参函数 带有输入参数的函数即为有参函数,有参函数的基本语法 # 函数定义 def <function name>(param1, param2,...): # Do this with param1, param2,... # 函数调用 <function name>(a...
jiulinxiri的头像-Stewed Noodles 资源烩之面大会员jiulinxiri2年前
0300
How to convert an AsyncSequence into a Sequence 如何将 AsyncSequence 转换为 Sequence-Stewed Noodles 资源

How to convert an AsyncSequence into a Sequence 如何将 AsyncSequence 转换为 Sequence

Swift does not provide a built-in way of converting an AsyncSequence into a regular Sequence, but often you’ll want to make this conversion yourself so you don’t n...