submlime text写java_代码这样写不止于优雅(Python版)

Martin(Bob大叔)曾在《代码整洁之道》一书打趣地说:当你的代码在做 Code Review 时,审查者要是愤怒地吼道:“What the fuck is this shit?”“Dude, What the fuck!”

等言辞激烈的词语时,那说明你写的代码是 Bad Code,如果审查者只是漫不经心的吐出几个

“What the fuck?”,

那说明你写的是 Good Code。衡量代码质量的唯一标准就是每分钟骂出“WTF” 的频率。

2b3d72eb01ae55bc097de64878593bd5.png

一份优雅、干净、整洁的代码通常自带文档和注释属性,读代码即是读作者的思路。Python 开发中很少要像 Java 一样把遵循某种设计模式作为开发原则来应用到系统中,毕竟设计模式只是一种实现手段而已,代码清晰才是最终目的,而 Python 灵活而不失优雅,这也是为什么 Python 能够深受 geek 喜爱的原因之一。

上周写了一篇:代码这样写更优雅,朋友们纷纷表示希望再写点儿,今天就接着这个话题写点 Python 中那些 Pythonic 的写法,希望可以抛砖引玉。

1、链式比较操作

age = 18if age > 18 and x < 60: print("yong man")

pythonic

if 18 < age < 60: print("yong man")

理解了链式比较操作,那么你应该知道为什么下面这行代码输出的结果是 False。

>>> False == False == True False

2、if/else 三目运算

if gender == 'male': text = '男'else: text = '女'

pythonic

text = '男' if gender == 'male' else '女'

在类C的语言中都支持三目运算 b?x:y,Python之禅有这样一句话:

“There should be one– and preferably only one –obvious way to do it. ”。

能够用 if/else 清晰表达逻辑时,就没必要再额外新增一种方式来实现。

3、真值判断

检查某个对象是否为真值时,还显示地与 True 和 False 做比较就显得多此一举,不专业

if attr == True: do_something()if len(values) != 0: # 判断列表是否为空 do_something()

pythonic

if attr: do_something()if values: do_something()

真假值对照表:

类型FALSETRUE布尔False (与0等价)True (与1等价)字符串“”( 空字符串)非空字符串,例如 ” “, “blog”数值0, 0.0非0的数值,例如:1, 0.1, -1, 2容器[], (),至少有一个元素的容器对象,例如:[0], (None,), [”]NoneNone非None对象

4、for/else语句

for else 是 Python 中特有的语法格式,else 中的代码在 for 循环遍历完所有元素之后执行。

flagfound = Falsefor i in mylist: if i == theflag: flagfound = True break process(i)if not flagfound: raise ValueError("List argument missing terminal flag.")

pythonic

for i in mylist: if i == theflag: break process(i)else: raise ValueError("List argument missing terminal flag.")

5、字符串格式化

s1 = "foofish.net"s2 = "vttalk"s3 = "welcome to %s and following %s" % (s1, s2)

pythonic

s3 = "welcome to {blog} and following {wechat}".format(blog="foofish.net
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值