练习题17

# 17、 将"wdnwjfwj we hd 9#sdfekfmew 2011"里的数字取出来相加结果为2020
a ='wdnwjfwj we hd 9#sdfekfmew 2011'
b = a.split(' ')
c = int(b[3][0])+int(b[4])
print(c)

posted on 2019-05-16 09:41  奥喵  阅读(93)  评论(0编辑  收藏  举报

导航