11-06-周四_16-39-41

This commit is contained in:
AaronXu
2025-11-06 16:39:41 +08:00
parent 206564001a
commit 67f588e349

View File

@@ -68,11 +68,11 @@ TypeError: can only concatenate str (not "int") to str
```python ```python
# 触发IndexError # 触发IndexError
l=['eagle','aa'] l=['张三','aa']
l[3] l[3]
# 触发KeyError # 触发KeyError
dic={'name':'eagle'} dic={'name':'张三'}
dic['age'] dic['age']
#触发ValueError #触发ValueError