摘要: 1. 将列表中逆序输出 代码: #!/usr/bin/python # -*- coding: UTF-8 -*- list = ['a', 'b', 'c', 'd'] list.reverse() print(list) 输出: ['d', 'c', 'b', 'a'] 2. 将数组中的数字按小 阅读全文
posted @ 2020-06-16 15:45 陈昌鸿 阅读(128) 评论(0) 推荐(0) 编辑