(1)把 1~6作为字典的键,把itcast的每个字符作为字典的值 (2)获取字典的值视图,只要值为t,就从字典删除这些元素。
时间: 2024-05-02 11:18:20 浏览: 122
第一个Struts应用-strus2教程
(1)
```python
d = {}
for i, c in enumerate("itcast"):
d[i+1] = c
print(d)
```
输出:
```
{1: 'i', 2: 't', 3: 'c', 4: 'a', 5: 's', 6: 't'}
```
(2)
```python
values = list(d.values())
for v in values:
if v == 't':
d = {k: c for k, c in d.items() if c != 't'}
print(d)
```
输出:
```
{1: 'i', 3: 'c', 4: 'a', 5: 's'}
```
阅读全文