bughelp wanted
仓库指标
- Star
- (26,379 star)
- PR 合并指标
- (30 天内没有已合并 PR)
描述
In the code cell 3: data = ['peter', 'Paul', None, 'MARY', 'gUIDO'] data.map(lambda s: s.capitalize()) was changed to [s.capitalize() for s in data if s!= None ] and now the code woks fine.