Rem20020111 发表于 2021-1-8 18:19:56

学习python的第一天

本帖最后由 Rem20020111 于 2021-1-9 22:19 编辑

Beautiful is better than ugly.
Explicit is better than implicit.
Simple is better than complex.
Complex is better than complicated.
Flat is better than nested.
Sparse is better than dense.
Readability counts.
Special cases aren't special enough to break the rules.
Although practicality beats purity.
Errors should never pass silently.
Unless explicitly silenced.
In the face of ambiguity, refuse the temptation to guess.
There should be one-- and preferably only one --obvious way to do it.
Although that way may not be obvious at first unless you're Dutch.
Now is better than never.
Although never is often better than *right* now.
If the implementation is hard to explain, it's a bad idea.
If the implementation is easy to explain, it may be a good idea.
Namespaces are one honking great idea -- let's do more of those!

石泊远 发表于 2021-1-8 23:21:01

翻译:
beautiful is better than ugly.
美胜于丑。
Explicit is better than implicit.
显式优于隐式。
Simple is better than complex.
简单胜于复杂
Complex is better than complicated.
复杂总比凌乱好。
Flat is better than nested.
扁平比嵌套的好。
Sparse is better than dense.
间隔胜于紧凑。
Readability counts.
重视可读性。
Special cases aren't special enough to break the rules.
特殊情况不足以打破规则。
Although practicality beats purity.
即使特例很实用,也不可违背这些规则。
Errors should never pass silently.
Unless explicitly silenced.
错误是很正常的,要勇于面对和改正,要是你确定不想改,也可以选择pass。
In the face of ambiguity, refuse the temptation to guess.
There should be one-- and preferably only one --obvious way to do it.
Although that way may not be obvious at first unless you're Dutch.
面对多种可能(歧义),不要尝试去猜测,而是应该尽量找一种,最好是唯一一种明显的解决方案,不过,如果你不是Python之父的话,这种解决方案一开始可能并不明显。
Now is better than never.
做也许好过不做,
Although never is often better than *right* now.
但动手前要细思量。
If the implementation is hard to explain, it's a bad idea.
If the implementation is easy to explain, it may be a good idea.
如果你无法向人解释清楚你的方案,那肯定不是一个好方案;反之亦然。
Namespaces are one honking great idea -- let's do more of those!
命名空间是一个绝妙的理念,我们应该多加利用

bonst 发表于 2021-1-8 18:39:53

python之禅

18647293236QQ 发表于 2021-1-8 23:09:08

酷酷的

Rem20020111 发表于 2021-1-9 22:20:11

石泊远 发表于 2021-1-8 23:21
翻译:
beautiful is better than ugly.
美胜于丑。


谢谢!{:5_110:}

Rem20020111 发表于 2021-1-9 22:28:48

""" 用python设计第一个游戏 """

temp = input("不妨猜一下小甲鱼现在心里想的是哪个数字:")
guess = int(temp)

if guess == 8:
    print("你是小甲鱼肚子里的蛔虫吗?!")
    print("哼,猜中了也没有奖励!")
else:
    print("猜错啦,小甲鱼现在心里想的是8!")

print("游戏结束,不玩啦^_^")
学习python的第二天

Rem20020111 发表于 2021-1-10 23:11:16

学习python的第三天
print("I love fishc"*3000)

Kuo 发表于 2021-1-10 23:18:01

这段话怎么出来的?

几木呀 发表于 2021-1-11 22:15:02

打卡第一天

gggordon 发表于 2021-1-12 11:08:12

同第一天,一起加油

FZT∞ 发表于 2021-1-12 15:45:14

加油
页: [1]
查看完整版本: 学习python的第一天