摘要: lists = [1,3,4,5,6,7,9,2]# 切片print lists[::-1]# 函数reverse 对数组进行操作lists.reverse() print lists# 函数reversed 返回一个迭代对象,需要list化print list(reversed(lists)) 阅读全文
posted @ 2020-07-25 18:24 黑暗尽头的超音速炬火 阅读(224) 评论(0) 推荐(0) 编辑
摘要: ROC AUC 所有评价指标总结 https://medium.com/@pkqiang49/%E4%B8%80%E6%96%87%E7%9C%8B%E6%87%82%E6%9C%BA%E5%99%A8%E5%AD%A6%E4%B9%A0%E6%8C%87%E6%A0%87-%E5%87%86%E 阅读全文
posted @ 2020-07-25 06:45 黑暗尽头的超音速炬火 阅读(196) 评论(0) 推荐(0) 编辑