码迷,mamicode.com
首页 > 编程语言 > 详细

Python tip 题目笔记

时间:2014-11-04 14:28:00      阅读:237      评论:0      收藏:0      [点我收藏+]

标签:for   sp   on   bs   python   nbsp   字符串   ip   print   

翻转字符串  x = ‘123456‘   y = x[::-1]

给你一字典a,如a={1:1,2:2,3:3},输出字典a的key,以‘,‘链接,如‘1,2,3‘。            print ‘,‘.join([str(i) for i in a])

给你一个字符串 a, 输出字符奇数位置的字符串。如a=‘12345’,则输出135。               print a[::2]

打印100以内所有素数 print ‘ ‘.join([‘%s‘ % x for x in range(2,100) if not [y for y in range(2,x/2+1) if x % y == 0]]) list 生成器用法,点赞

Python tip 题目笔记

标签:for   sp   on   bs   python   nbsp   字符串   ip   print   

原文地址:http://www.cnblogs.com/briller/p/4073364.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!