文章插图
image.png
技巧 #1字符串翻转
a = "codementor">>> print "Reverse is",a[::-1]翻转后的结果为 rotnemedoc技巧 #2
矩阵转置
mat = [[1, 2, 3], [4, 5, 6]]>>> zip(*mat)[(1, 4), (2, 5), (3, 6)]技巧 #3
a = [1,2,3]
将列表中的三个元素分拆成三个变量
a = [1, 2, 3]>>> x, y, z = a>>> x1>>> y2>>> z3技巧 #4
a = ["Code", "mentor", "Python", "Developer"]
将字符串列表拼接成一个字符串
print " ".join(a)Code mentor Python Developer技巧 #5
List 1 = ['a', 'b', 'c', 'd']
List 2 = ['p', 'q', 'r', 's']
编写 Python 代码,实现下面的输出
ap
bq
cr
ds
for x, y in zip(list1,list2):... print x, y...a pb qc rd s技巧 #6
仅用一行代码实现两个变量的交换
a=7>>> b=5>>> b, a =a, b>>> a5>>> b7技巧 #7
不使用循环,输出 "codecodecodecode mentormentormentormentormentor"
print "code"4+' '+"mentor"5codecodecodecode mentormentormentormentormentor技巧 #8
a = [[1, 2], [3, 4], [5, 6]]
【10 个 Python 初学者必知编码小技巧】不使用循环,将其转变成单个列表
输出:- [1, 2, 3, 4, 5, 6]
import itertools>>> list(itertools.chain.from_iterable(a))[1, 2, 3, 4, 5, 6]技巧 #9
检查一个单词和另一个单词是否只是字母顺序不同
def is_anagram(word1, word2): """检查一个单词和另一个单词是否只是字母顺序不同 word1: string word2:string returns: boolean """将上面的函数补充完毕,以检查一个单词和另一个单词是否只是字母顺序不同
from collections import Counterdef is_anagram(str1, str2): return Counter(str1) == Counter(str2)>>> is_anagram('abcd','dbca')True>>> is_anagram('abcd','dbaa')False技巧 #10
从字符串输入中获取值
对于输入数据 1 2 3 4 我们希望得到列表 [1, 2, 3, 4]。
请注意,列表中的元素都是 int 类型,且只能使用一行代码 。
result = map(lambda x:int(x) ,raw_input().split())1 2 3 4>>> result[1, 2, 3, 4]
推荐阅读
- 九种跨域方式的实现原理,第一个就超惊艳!
- Python装饰器以及高级用法
- 8G可用 电脑插了两个8G的内存条,可是在属性里面查看是“16G”,这是怎么回事?
- 宝马是哪个国家的汽车呢 宝马是哪国的品牌
- 支付宝怎么开通花呗收款 个人花呗收款开通条件
- 如何用Python操作数据库?
- 在太空看来地球是个多么
- 为什么会出现浅表性胃炎,或是这四个原因
- 网友热议|清明“代哭”服务收费上千 多个电商平台推有偿代扫墓服务:谨防被骗
- 女人最渴望被挑逗的十个部位