test(retrieval): 增加检索测试数据与单元端到端测试

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
yxx
2026-08-27 19:24:20 +08:00
co-authored by Claude
parent 6b16ad1a08
commit dbcb94b413
7 changed files with 347 additions and 0 deletions
@@ -0,0 +1,18 @@
---
title: Python 基础语法
tags: python, 编程
---
# 变量与类型
Python 是动态类型语言,变量无需声明类型。
整数、浮点数、字符串、布尔值是四种基本类型。
## 列表与字典
列表用方括号,字典用花括号。列表推导式非常常用。
### 函数定义
使用 def 关键字定义函数,支持默认参数与关键字参数。