摘要: """ A TestRunner for use with the Python unit testing framework. It generates a HTML report to show the result at a glance. The simplest way to use th 阅读全文
posted @ 2020-08-12 21:58 程程111 阅读(123) 评论(0) 推荐(0) 编辑
摘要: 冒泡拍序 def bubble_sort(nums): for i in range(len(nums) - 1): for j in range(len(nums) - i - 1): if nums[j] > nums[j + 1]: nums[j], nums[j + 1] = nums[j 阅读全文
posted @ 2020-08-12 20:17 程程111 阅读(100) 评论(0) 推荐(0) 编辑
摘要: #创建表 CREATE TABLE table_name (column_name int) CREATE TABLE IF NOT EXISTS `runoob_tbl`( `runoob_id` INT UNSIGNED AUTO_INCREMENT, `runoob_title` VARCHA 阅读全文
posted @ 2020-08-12 19:16 程程111 阅读(79) 评论(0) 推荐(0) 编辑