摘要: 题目id: 1 just print a+bgive you two var a and b, print the value of a+b, just do it!!print a+b题目id: 2 list排序给你一个list L, 如 L=[2,8,3,50], 对L进行升序排序并输出print sorted(L)题目id: 3 字符串逆序给你一个字符串 a, 如a=‘12345’,对a进行逆序输出a。print a[::-1]题目id:4 输出字典key给你一字典a,如a={1:1,2:2,3:3},输出字典a的key,以','链接,如‘1,2,3'。print 阅读全文
posted @ 2013-11-09 20:52 OpenSoucre 阅读(6596) 评论(7) 推荐(1) 编辑