《python编程从入门到实践》第二章课后习题

2-1简单消息

message='hello world'
print(message)

2-2多条简单消息

message='hello  world'
print(message)
message='hello python'
print(message)

2-3个性化消息

name='Eric'
message='hello '+name+', would you like to learn some py today'
print(message)

2-4调整名字的大小写

name='Eric'
print(name.lower())
print(name.upper())
print(name.title())

2-5名言

print('Albert Einstein once said, “A person who never made a mistake never tried anything new.”')

2-6名言2

famous='Albert Einstein'
message='A person who never made a mistake never tried anything new.'
print(famous+' once said,"'+message+'."')

2-7剔除人名中的空白

name=' Eric '
print('\n\t'+name.lstrip()+'\n')
print('\n\t'+name.rstrip()+'\n')
print('\n\t'+name.strip()+'\n')

2-8数字8

print(5+3)
print(9-1)
print(2*4)
print(int(16/2))
message=5+3
print(message)
message=9-1
print(message)
message=2*4
print(message)
message=16/2
print(int(message))

2-9最喜欢的数字

number=21
print('我最喜欢的数字是'+str(number)+'.')

2-10添加注释

#输出hello world
message='hello world'
print(message)

2-11python之禅

import this
The Zen of Python, by Tim Peters

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!

《python的禅宗》,作者蒂姆·彼得斯
美总比丑好。
显性比隐性好。
简单总比复杂好。
复杂总比复杂好。
扁平比嵌套好。
稀疏比密集好。
可读性。
特殊情况并不特别到足以打破规则。
尽管实用性胜过纯洁性。
错误不应该悄无声息地过去。
除非显式地沉默。
面对模棱两可,拒绝猜测的诱惑。
应该有一种——最好只有一种——显而易见的方法来做到这一点。
虽然这种方式一开始可能不太明显,除非你是荷兰人。
现在总比没有好。
虽然从来没有比现在更好。
如果实现很难解释,那就不是一个好主意。
如果实现很容易解释,那么它可能是一个好主意。
命名空间是一个伟大的想法——让我们做更多的命名空间!
注:用有道词典翻译的,大致意思是这吧…

学习python和深度学习扫下方二维码
在这里插入图片描述

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

wakaweika

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值