python基础实践(二)

-*-越简单越快乐-*-# -*- coding:utf-8 -*-# Author:sweeping-monkQuestion_1 = "python中的整数运算"Method_1 = "方法以下:"print(Question_1)print(Method_1)cmd_D = '''>>> 3 + 25>>> 3 - 21>>> 3 * 26>>> 3 / 21.5>>> 3 // 21>>> 3 ** 29>>> 3 ** 327>>> 10 ** 2100>>> 10 ** 61000000>>> 2 + 3*414>>> (2 + 3) * 420'''print(cmd_D)Question_2 = "如何使用函数str()避免类型错误?"Method_2 = "写一个生日祝福来解释这个问题,请看演示:"print(Question_2)print(Method_2)age = 36#message = "Happy " + age + "rd Birthday!"    #这段age的变量值究竟是数字23仍是字符2和3呢?你执行程序后会发现报类型错误。message = "Happy " + str(age)+ "rd Birthday!"     #这里是把数字23转换成字符2和3打印出来print(message)Question_3 = "python之禅"print(Question_3)cdm_D_1 = '''>>> import this     The Zen of Python, by Tim PetersBeautiful 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!>>> Tim Peters的《巨蟒之禅》----->代码指导原则:美胜于丑。外显优于内隐。简单赛过复杂。复杂胜于复杂。扁平优于嵌套。疏比密。可读性是重要的。特殊案件不足以打破规则。虽然实用赛过纯粹。错误决不能悄无声息地经过。除非明确沉默。面对模棱两可,拒绝猜想的诱惑。应该有一个——最好只有一个——显然是这样作的。虽然这种方式起初并不明显,除非你是荷兰人。如今总比没有强。虽然如今历来没有比如今更好。若是实现很难解释,那是个坏主意。若是实现容易解释,那多是个好主意。名称空间是一个伟大的想法-让咱们作更多的!> > >'''print(cdm_D_1)
相关文章
相关标签/搜索