为了账号安全,请及时绑定邮箱和手机立即绑定

python进阶

廖雪峰 移动开发工程师
难度中级
时长 3小时33分
学习人数
综合评分9.20
575人评价 查看评价
9.6 内容实用
9.0 简洁易懂
9.0 逻辑清晰
def cmp_ignore_case(s1, s2):
if ord(s1[0].lower()) > ord(s2[0].lower()):
return 1
elif ord(s1[0].lower()) < ord(s2[0].lower()):
return -1
return 0


print sorted(['bob', 'about', 'Zoo', 'Credit'], cmp_ignore_case)
import json

class Students(object):

def read(self):
return '["Tim", "Bob", "Alice"]'

s = Students()

print json.load(s)
装饰器不要跳过,有助于理解中间件的概念。
return (s[:1].upper() + s[1:].lower()).strip() 可以解决 list中有字符串带有空格的问题,比如“ jack”前面有空格
无论list里面是整型还是布尔型,还是NONE,照样可以
def is_not_empty(s):
return s and len(s.strip()) > 0
def format_name(s):
if isinstance(s, str):
return s[:1].upper() + s[1:].lower()
L=list(map(format_name,['adam',None,'LISA', 'barT',45,"34d",True]))
print(list(filter(is_not_empty,L)))
import math

def is_sqr(x):
if math.sqrt(x)%1==0:
return x
print filter(is_sqr, range(1, 101))
is_not_empty=lambda s: s and len(s.strip()) > 0
print filter(is_not_empty, ['test', None, '', 'str', ' ', 'END'])

难道这样不是更简化,运行结果是一样的啊,[・_・?][・_・?]
写了个递归来实现:
for x in range(num):
l.append(self.get_fbnqlist(x))
self.l=l
def get_fbnqlist(self,num):
if num <= 1:
return num
else:
return self.get_fbnqlist(num-1)+self.get_fbnqlist(num-2)
def cmp_ignore_case(s1, s2):
return s1.upper() > s2.upper() and 1 or -1

print sorted(['bob', 'about', 'Zoo', 'Credit'], cmp_ignore_case)
r'["Tim","Bob","Alice"]' 这是什么意思啊
3天才能够理解,没谁了,太专注一件事情也许适得其反,不如坐点别的,也许就能想到问题了呢?
连续好几节基本都是看答案,看评论才做出来的 >.< 不对,看了答案也做不出来
不看评论不知道,从入门到进阶都没接触过字典,不知道有这东西,怎么会做这个题
isinstance(s, unicode) 这个函数没讲过啊
课程须知
本课程是Python入门的后续课程 1、掌握Python编程的基础知识 2、掌握Python函数的编写 3、对面向对象编程有所了解更佳
老师告诉你能学到什么?
1、什么是函数式编程 2、Python的函数式编程特点 3、Python的模块 4、Python面向对象编程 5、Python强大的定制类

微信扫码,参与3人拼团

意见反馈 帮助中心 APP下载
官方微信
友情提示:

您好,此课程属于迁移课程,您已购买该课程,无需重复购买,感谢您对慕课网的支持!

本次提问将花费2个积分

你的积分不足,无法发表

为什么扣积分?

本次提问将花费2个积分

继续发表请点击 "确定"

为什么扣积分?

举报

0/150
提交
取消