modify the answer of 3.4
parent
b58d0e988b
commit
a3334a44b8
|
@ -353,8 +353,8 @@
|
||||||
def str2dict(str1):
|
def str2dict(str1):
|
||||||
dict1 = {}
|
dict1 = {}
|
||||||
for iterms in str1.split('|'):
|
for iterms in str1.split('|'):
|
||||||
key,value = iterms.split(':'):
|
key,value = iterms.split(':')
|
||||||
dict1[key] = value
|
dict1[key] = value
|
||||||
return dict1
|
return dict1
|
||||||
```
|
```
|
||||||
## 3.5 请按alist中元素的age由小到大排序
|
## 3.5 请按alist中元素的age由小到大排序
|
||||||
|
|
Loading…
Reference in New Issue