不生产代码,我只是代码的搬运工。
Python的列表推倒器是美好的语法糖。所以使用列表推倒器简化了for循环的嵌套,更简洁。许多黑魔法都是用这个方法。
Python可用于运维,因此在Linux系统管理中,命令行上一行就搞定了。下面给的例子中就有。
以下代码在 windows amd64 python 3.7.4测试。
为了使结果看上去更优雅,我们提前使用 from pprint import pprint,使用pprint打印数据。
from pprint import pprint
所有代码在jupyter notebook内运行。
pprint(zip(('Byte', 'KByte', 'MByte', 'GByte', 'TByte'), (1 << 10*i for i in range(5))));
# 列表所有元素乘以2
pprint(list(map(lambda x: x * 2, range(1,11))))
# 列表所有元素之和
pprint(sum(range(1,1001)))
# 判断一些词是否在字符串内
wordlist = ["scala", "akka", "play framework", "sbt", "typesafe"] tweet = "This is an example tweet talking about scala and sbt." print(list(map(lambda x: x in tweet.split(),wordlist)))
# happy birthday to you
pprint(list(map(lambda x: "Happy Birthday to " + ("you" if x != 2 else "dear Name"),range(4))))
# 求2-50之间的素数
n = 50 # 求 2-50 之间的素数 pprint(sorted(set(range(2,n+1)).difference(set((p * f) for p in range(2,int(n**0.5) + 2) for f in range(2,int(n/p)+1)))))
print('\n'.join(\"%i Byte = %i Bit = largest number: %i\" % (j, j*8, 256**j-1) for j in (1 << i for i in range(8))));
f=lambda x: [[y for j, y in enumerate(set(x)) if (i >> j) & 1] for i in range(2**len(set(x)))]; pprint(f([10,9,1,10,9,1,1,1,10,9,7]));
操作系统相关,或者文件相关的操作因为无法模拟,我们将代码贴在下方:
# 展示linux /etc/passwd用户列表。其实 cat /etc/passwd | cut -d: -f 1 能起到相同的作用。当然熟悉python的可以使用python。不强求。顺手的才是好的。
pprint('\n'.join(line.split(":",1)[0] for line in open("/etc/passwd")))
# 压缩css文件 就是正则匹配并移除无用的字符。
import re,sys;
pprint(re.sub("\s*([{};,:])\s*", "\\1", re.sub("/\*.*?\*/", "", re.sub("\s+", " ", sys.stdin.read()))))
# 倒序输出一个文件。这个工具linux都准备好了,叫tac。写好40年来没换过,为啥?一个字,“好使”!
import sys;
print('\n'.join(reversed(sys.stdin.read().split('\n'))))
# 输出文件头10行。哎,不忍心打击python了。Linux又准备好了。head -n 10。哎,各自喜欢吧。那个顺手用哪个。
python -c "import sys; sys.stdout.write(''.join(sys.stdin.readlines()[:10]))" < /path/to/your/file
至于其他魔法,其他回答说了很多,就不重复贴出来了。