当前位置:首页>python>最新出炉!!2026年全国信息素养大赛Python小低组(1-3年级)初赛真题 | 附答案及详细解析

最新出炉!!2026年全国信息素养大赛Python小低组(1-3年级)初赛真题 | 附答案及详细解析

  • 2026-07-02 16:36:40
最新出炉!!2026年全国信息素养大赛Python小低组(1-3年级)初赛真题 | 附答案及详细解析

竞/赛/真/题

  知识如海,学无止境  

❤️  关注我们获取更多内容,更新不迷路 ❤️

2026年信息素养大赛Python小高组初赛刚刚结束

我们第一时间整理了本次考试的完整真题。

本次大赛与以往题型不同

新增了多选题的类型

考后复盘是最好的学习方式。

让孩子再重新做一遍,

看看哪些知识点还有漏洞,查漏补缺,为复赛做好准备!

以下是完整试卷以及详细的解析,

建议收藏转发给需要的同学👇


2026 年 全国青少年信息素养大赛

Python(小高组)初赛真题

一、单选:

01:在Python中,想要在屏幕上显示"创造新世界!",应该使用以下哪个语句?

A、output(”创造新世界!")

B、print("创造新世界!")

C、puts("创造新世界!")

D、console.loa('创造新世界!")

解析:

本题考察Python中控制台输出语句的使用。

Python 中用于在屏幕(控制台)显示内容的标准输出函数是 print()

分析选项:

A:Python 无内置 output()函数用于控制台输出,该选项错误

B:print()是 Python 内置的控制台输出函数,能实现题目要求的“在屏幕上显示内容”,该选项正确

C:puts()是 Ruby、PHP 等语言的输出函数,Python 中不存在该内置函数,该选项错误

D:存在两处问题:

① 字符串引号不匹配(混合单引号和双引号,语法错误);

② console.log()是 JavaScript 浏览器环境的控制台输出方法,Python 不支持此写法,该选项错误

正确答案:B、print("创造新世界!")


02:下列哪个变量名在Python中是合法的?

A、 2nd_score

B、 if

C、 student_name

D、 my-name

解析:

本题考察Python中变量的命名规则。  

在Python中,变量名必须遵循以下规则:

1.变量名可以包含字母、数字和下划线(_)。

2.变量名不能以数字开头。

3.变量名不能是Python的关键字(如if、for、while等)。

4.变量名中不能包含空格或特殊字符(如-、*、!等)。

分析选项:

A. 错误,以数字开头,违反规则2。

B. 错误,if是Python的关键字,不能用作变量名,违反规则3。

C. 正确,由字母、数字和下划线组成,且不以数字开头,也不是关键字,符合所有命名规则。

D. 错误,包含特殊字符减号(-),违反规则4。

正确答案:C. student_name


03: 下列哪个表达式的结果是整数类型?

A、  9/3

B、  8//4

C、  7/2

D、  15/3

解析:

本题考察Python中算术运算符的使用。  

算术运算符有:+(加法)、-(减法)、*(乘法)、/(除法)、//(取整数)、%(取余数)  

在Python中,除法运算符(/)的结果总是浮点类型,即使能整除。如需得到整数结果,应使用取整数(//)运算。

正确答案:B.  8//4


04: 下列哪个比较运算的结果是True?

A、5>10

B、'abc'<'abd'

C、3.0!= 3

D、 'Python' == 'python'

解析:

本题考察Python中比较运算符的使用。

比较运算符包括:>(大于)、<(小于)、==(等于)、!=(不等于)等,用于比较两个值,返回布尔值True或False。

题目中要求找出结果为True的比较运算,需逐一分析每个选项的逻辑。

分析选项:

A. 5>10:数值比较,5不大于10,结果为False。

B. 'abc'<'abd':字符串比较按字典序逐字符进行。前两个字符相同,第三个字符'c'的ASCII码小于'd',因此'abc'<'abd'成立,结果为True。

C. 3.0!=3:数值比较时,整数3与浮点数3.0的值相等,因此3.0!=3不成立,结果为False。

D. 'Python' == 'python':字符串比较区分大小写,首字母'P'与'p'不同,因此不相等,结果为False。

正确答案:B、'abc'<'abd'


05: 下列哪个if语句的写法是正确的?

A、if (x> 0) print("正数")

B、if x> 0: print("正数")

C、if x> 0{print("正数")}

D、if x>0 then: print("数")

解析:

本题考察Python中if语句的语法规则。

在Python中,if语句用于条件判断,其基本语法为:if 条件: 执行语句。条件后必须跟冒号(:),执行语句需缩进。

分析选项:

A. 错误,缺少冒号(:),且条件与执行语句之间没有正确的分隔。

B. 正确,条件后跟冒号,执行语句缩进(此处为单行简单语句)。

C. 错误,使用了大括号{},不符合Python语法,Python使用冒号和缩进表示代码块。

D. 错误,使用了then关键字,Python中if语句不使用then。

正确答案:B、if x> 0: print("正数")


06: 已知 s = "Python",则 s[2] 的值是什么?

A、'y'

B、'h'

C、'o'

D、't'

解析:

本题考察Python中字符串索引的使用。

字符串是一个字符序列,可以通过索引访问每个字符,索引从0开始,即第一个字符的索引为0,第二个为1,依此类推。

题目中已知 s = "Python",

字符与索引的对应关系为:

索引0 = 'P',

索引1 = 'y',

索引2 = 't',

索引3 = 'h',

索引4 = 'o',

索引5 = 'n'。

因此,s[2] 的值为索引2对应的字符 't'。

正确答案:D 、't'


07:  现有列表 scores = [87, 75, 95, 60, 85], 执行scores.sort(reverse=True) 后,scores的第一个元素是多少?

A、87

B、75

C、95

D、85

解析:

本题考察Python中列表的sort()方法。

sort()方法用于对列表进行排序,默认是升序排序。参数reverse=True表示降序排序(从大到小)。

题目中列表scores = [87, 75, 95, 60, 85],执行scores.sort(reverse=True)后,列表按降序排列,变为[95, 87, 85, 75, 60]。因此,第一个元素(索引0)是95。

正确答案:C、95


08:  在Python中,要使用随机数生成功能,应该使用哪个导入语句?

A、 import random

B、 import randint

C、 from math import random

D.、include random

解析:

本题考察Python中模块导入的使用。

在Python中,要使用随机数生成功能,需要导入内置的random模块。正确的

导入方式是使用import语句。

分析其他选项:

A.正确,导入random模块,之后可以使用random模块中的各种随机数函数。

B. 错误,randint是random模块中的一个函数,不是独立的模块,无法直接导入。

C. 错误,math模块中并没有random函数,随机数功能在独立的random模块中。

D.错误,Python中导入模块使用import关键字,而不是include.

正确答案:  A、 import random


09: 以下代码的输出结果是:import random;print(random.randint(5,8))

A、5

B、6

C、可能是5,6,7,8中的任意一个

D、8

解析: 

本题考察Python中random模块的randint()函数的使用。

randint(a,b)函数用于生成一个指定范围内的随机整数,该范围包括两端,即生成的整数N满足a<=N<=b。

题中代码import random;print(random.randint(5,8)),

会生成一个5到8之间(包含5和8)的随机整数。因此输出结果可能是5、6、7、8中的任意一个。

正确答案:C、可能是5,6,7,8中的任意一个


10:小红编写程序:age=input(”请输入你的年龄:”),用户输入"35”后,变量age的数据类型是什么?

A、浮点数类型

B、整数类型

C、布尔类型

D、字符串类型

解析: 

本题考察Python中input函数返回值的类型。

在Python中,input(函数用于从标准输入读取一行文本,并始终返回一个字符串类型(str),无论用户输入的内容是什么,即使输入的是数字,也会被当作字符串处理。

题目中,代码age=input("请输入你的年龄:"),用户输入"35"后,input函数返回字符串"35",因此变量age的数据类型是字符串类型。

故变量age的数据类型是字符串类型。

正确答案:D、字符串类型


二、多选题

11:以下哪几个运算属于算术运算?(    )

A.  +

B.  >

C.  -

D.  %

解析: 

本题考察Python中算术运算符的使用。  

算术运算符有:+(加法)、-(减法)、*(乘法)、/(除法)、//(取整数)、%(取余数)  

故A、C、D均为算术运算符,选项B为比较运算符,不属于算术运算符

正确答案:A、C、D


12:关于import语句,下列说法正确的有?(    )

A、import random导入整个random模块

B、from random import randint只导入randint函数

C、import random as rd将random模块重命名为rd

D、import语句只能写在程序的最开头

解析:

本题考察Python中import语句的使用规则。

分析选项:

A. 正确,该语句会导入random模块的所有功能,使用时需通过模块名访问,如random.randint()。

B. 正确,该语句仅导入random模块中的randint函数,使用时可直接调用randint()。

C. 正确,该语句在导入random模块的同时为其指定别名rd,之后可通过rd调用模块功能,如rd.randint()。

D. 错误,import语句可以出现在程序的任何位置(如函数内、条件分支中),但必须在使用对应模块功能之前执行;通常为代码清晰起见,建议放在程序开头。

正确答案:A、B、C


13:下列能得到整数5的有?(   )

A、 int('5)

B、 int(5.8)

C、int('5.8)

D、float('5")

解析:

本题考察Python中类型转换函数int()和 float()的使用。

float()转换为浮点数。

int()函数将其他类型转换为整数,

分析选项:

A.将字符串'5'转换为整数5,可以得到整数5。

B.将浮点数5.8转换为整数,int()对浮点数向下取整,可以得到整数5。

C.字符串'5.8'不是有效的整数字符串(包含小数点),转换会引发ValueError,不能得到整数5。

D.将字符串'5’转换为浮点数5.0,结果是浮点数,不是整数5。

正确答案:A、B


14:关于以下代码,哪些说法正确?

代码: s = 'apple,banana,orange'; fruits = s.split (',')

A、fruits的值为['apple','banana','orange']

B、fruits[0]是'apple'

C、len(fruits) 是3

D、s.split()得到空列表

解析:

本题考察Python字符串的split方法。

split方法用于将字符串按照指定分隔符分割成列表。当给定参数时,按参数分割;当无参数时,默认按空白字符(空格、制表符、换行符等)分割。

分析选项:

A. 正确,split(',')按逗号分割字符串,得到该列表。

B. 正确,列表第一个元素是'apple'。

C. 正确,列表有三个元素,长度为3。

D. 错误,s.split()无参数时,默认按空白字符分割,但s中无空白字符,因此返回包含原字符串的列表['apple,banana,orange'],不是空列表。

正确答案: A、B、C


15:下面哪个选项可以正确输出字典d中所有的键?

A、for key in d: print(key)

B、for key in d.keys(): print(key)

C、for key in d.values(): print(key)

D、for key, value in d.items(): print(key)

解析:

本题考察Python中遍历字典键的方法。

字典的键可以通过直接遍历字典、遍历d.keys()或遍历d.items()并取键来获取。

分析选项:

A. 正确,直接遍历字典默认遍历键,能输出所有键。

B. 正确,d.keys()返回键的视图,遍历它得到所有键。

C. 错误,d.values()返回值的视图,遍历得到的是值而不是键,虽然变量名为key,但实际打印的是值。

D. 正确,d.items()返回键值对,解包后key是键,能输出所有键。

正确答案:A、B、D


三、判断题

16:Python语言里,变量名 name_ 为合法的。(  )

A.   正确

B.   错误

解析:

本题考察Python中变量的命名规则。  

在Python中,变量名必须遵循以下规则:

  1. 变量名可以包含字母、数字和下划线(_)。

  2. 变量名不能以数字开头。

  3. 变量名不能是Python的关键字(如if、for、while等)。

  4. 变量名中不能包含空格或特殊字符(如-、*、!等)。

变量名 name_ 符合规则,为合法的

正确答案  A 正确


17:Python 中,x = 100; y = 200; x, y = y, x 执行后,x 变为 200,y 变为 100。。(    )

A.   正确

B.   错误

解析: 

本题考察Python中多重赋值和变量交换。

在Python中,可以使用多重赋值同时给多个变量赋值,例如x, y = y, x,这个语句会交换变量x和y的值。

题目中初始x=100y=200,执行x, y = y, x后,右侧y, x的值构成一个元组(200, 100),然后分别赋值给左侧的x和y,即x被赋值为200,y被赋值为100。因此x变为200,y变为100,说法正确。

正确答案  A 正确


18:import turtle 后,想要使用 forward 函数必须写成 turtle.forward()。(    )

A.   正确

B.   错误

解析:

本题考察 Python 中模块导入后的函数调用方式。

当使用 import turtle导入模块时,模块中的所有函数、类等都需要通过模块名前缀来访问,即必须使用 turtle.forward()的形式调用 forward函数。如果希望直接使用 forward(),则需要使用 from turtle import forward或 from turtle import *的方式导入。

正确答案  A 正确


19:在 Python 中,使用 len("你好") 获取字符串长度,结果是 2。(    )

A.   正确

B.   错误

解析:

本题考察Python中len()函数对字符串长度的计算。

在Python 3中,len()函数返回字符串中的字符数。中文字符“你”和“好”各占一个字符,因此len("你好")的结果是2。

正确答案  A 正确


20:Python 字典的键可以是可变类型如列表,这样更灵活。(    )

A.   正确

B.   错误

解析:

本题考察Python中字典的用法。

字典的键必须是不可变类型(如整数、字符串、元组),列表是可变类型,不能作为键。

正确答案   B 错误


走进新意|让思维闪光,让未来可期!(全文带你了解新意编程)

获取更多资料,请关注我们⬇️

考级、竞赛、真题练习各类相关材料,关注即可获取❤️

【系列更新说明】

本公众号定期且长期更新信息素养大赛的真题解析

并收录于本公众号的“信息素养大赛”合集中

助力各位小伙伴们提前备战

每一届的信息素养大赛

新意编程教师团队带领大家

深度剖析真题:

🔍 难点解析 + 避坑指南

💻 清晰步骤 + 多解法演示

📝 得分要点全掌握!

我们还免费向大家提供

【编程每日一练】

【逻辑思维每日一练】

一天一题,提升实战力!

并有专属教师为您答疑解惑

快与我们

一起学习!一起进步!

        新意编程,秉持以孩子的教育为首的理念,有持证上岗带教经验丰富、专业扎实的老师。专业的STEAM教育,专注培养孩子的逻辑思维、专注力,引导孩子结合课内外知识、结合生活,链接经验、解决问题等多方面能力。选择新意,让孩子学有所获、学有所成;让家长放心和安心。

👇新意由来👇

1、一心一意做编程

2、做有新意的编程

3、诚心诚意为孩子

更多内容请关注微信公众号:新意编程

最新文章

随机文章

基本 文件 流程 错误 SQL 调试
  1. 请求信息 : 2026-07-03 16:39:00 HTTP/2.0 GET : https://f.mffb.com.cn/a/495215.html
  2. 运行时间 : 0.123840s [ 吞吐率:8.07req/s ] 内存消耗:4,507.03kb 文件加载:140
  3. 缓存信息 : 0 reads,0 writes
  4. 会话信息 : SESSION_ID=1abe56e36493de45077fcc7e418530bc
  1. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/public/index.php ( 0.79 KB )
  2. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/autoload.php ( 0.17 KB )
  3. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/composer/autoload_real.php ( 2.49 KB )
  4. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/composer/platform_check.php ( 0.90 KB )
  5. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/composer/ClassLoader.php ( 14.03 KB )
  6. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/composer/autoload_static.php ( 4.90 KB )
  7. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-helper/src/helper.php ( 8.34 KB )
  8. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-validate/src/helper.php ( 2.19 KB )
  9. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/helper.php ( 1.47 KB )
  10. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/stubs/load_stubs.php ( 0.16 KB )
  11. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/Exception.php ( 1.69 KB )
  12. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-container/src/Facade.php ( 2.71 KB )
  13. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/symfony/deprecation-contracts/function.php ( 0.99 KB )
  14. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/symfony/polyfill-mbstring/bootstrap.php ( 8.26 KB )
  15. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/symfony/polyfill-mbstring/bootstrap80.php ( 9.78 KB )
  16. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/symfony/var-dumper/Resources/functions/dump.php ( 1.49 KB )
  17. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-dumper/src/helper.php ( 0.18 KB )
  18. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/symfony/var-dumper/VarDumper.php ( 4.30 KB )
  19. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/App.php ( 15.30 KB )
  20. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-container/src/Container.php ( 15.76 KB )
  21. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/psr/container/src/ContainerInterface.php ( 1.02 KB )
  22. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/app/provider.php ( 0.19 KB )
  23. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/Http.php ( 6.04 KB )
  24. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-helper/src/helper/Str.php ( 7.29 KB )
  25. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/Env.php ( 4.68 KB )
  26. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/app/common.php ( 0.03 KB )
  27. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/helper.php ( 18.78 KB )
  28. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/Config.php ( 5.54 KB )
  29. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/config/app.php ( 0.95 KB )
  30. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/config/cache.php ( 0.78 KB )
  31. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/config/console.php ( 0.23 KB )
  32. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/config/cookie.php ( 0.56 KB )
  33. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/config/database.php ( 2.48 KB )
  34. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/facade/Env.php ( 1.67 KB )
  35. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/config/filesystem.php ( 0.61 KB )
  36. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/config/lang.php ( 0.91 KB )
  37. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/config/log.php ( 1.35 KB )
  38. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/config/middleware.php ( 0.19 KB )
  39. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/config/route.php ( 1.89 KB )
  40. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/config/session.php ( 0.57 KB )
  41. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/config/trace.php ( 0.34 KB )
  42. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/config/view.php ( 0.82 KB )
  43. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/app/event.php ( 0.25 KB )
  44. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/Event.php ( 7.67 KB )
  45. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/app/service.php ( 0.13 KB )
  46. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/app/AppService.php ( 0.26 KB )
  47. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/Service.php ( 1.64 KB )
  48. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/Lang.php ( 7.35 KB )
  49. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/lang/zh-cn.php ( 13.70 KB )
  50. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/initializer/Error.php ( 3.31 KB )
  51. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/initializer/RegisterService.php ( 1.33 KB )
  52. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/services.php ( 0.14 KB )
  53. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/service/PaginatorService.php ( 1.52 KB )
  54. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/service/ValidateService.php ( 0.99 KB )
  55. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/service/ModelService.php ( 2.04 KB )
  56. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-trace/src/Service.php ( 0.77 KB )
  57. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/Middleware.php ( 6.72 KB )
  58. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/initializer/BootService.php ( 0.77 KB )
  59. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/Paginator.php ( 11.86 KB )
  60. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-validate/src/Validate.php ( 63.20 KB )
  61. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/Model.php ( 23.55 KB )
  62. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/model/concern/Attribute.php ( 21.05 KB )
  63. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/model/concern/AutoWriteData.php ( 4.21 KB )
  64. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/model/concern/Conversion.php ( 6.44 KB )
  65. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/model/concern/DbConnect.php ( 5.16 KB )
  66. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/model/concern/ModelEvent.php ( 2.33 KB )
  67. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/model/concern/RelationShip.php ( 28.29 KB )
  68. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-helper/src/contract/Arrayable.php ( 0.09 KB )
  69. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-helper/src/contract/Jsonable.php ( 0.13 KB )
  70. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/model/contract/Modelable.php ( 0.09 KB )
  71. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/Db.php ( 2.88 KB )
  72. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/DbManager.php ( 8.52 KB )
  73. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/Log.php ( 6.28 KB )
  74. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/Manager.php ( 3.92 KB )
  75. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/psr/log/src/LoggerTrait.php ( 2.69 KB )
  76. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/psr/log/src/LoggerInterface.php ( 2.71 KB )
  77. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/Cache.php ( 4.92 KB )
  78. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/psr/simple-cache/src/CacheInterface.php ( 4.71 KB )
  79. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-helper/src/helper/Arr.php ( 16.63 KB )
  80. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/cache/driver/File.php ( 7.84 KB )
  81. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/cache/Driver.php ( 9.03 KB )
  82. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/contract/CacheHandlerInterface.php ( 1.99 KB )
  83. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/app/Request.php ( 0.09 KB )
  84. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/Request.php ( 55.78 KB )
  85. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/app/middleware.php ( 0.25 KB )
  86. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/Pipeline.php ( 2.61 KB )
  87. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-trace/src/TraceDebug.php ( 3.40 KB )
  88. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/middleware/SessionInit.php ( 1.94 KB )
  89. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/Session.php ( 1.80 KB )
  90. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/session/driver/File.php ( 6.27 KB )
  91. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/contract/SessionHandlerInterface.php ( 0.87 KB )
  92. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/session/Store.php ( 7.12 KB )
  93. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/Route.php ( 23.73 KB )
  94. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/route/RuleName.php ( 5.75 KB )
  95. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/route/Domain.php ( 2.53 KB )
  96. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/route/RuleGroup.php ( 22.43 KB )
  97. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/route/Rule.php ( 26.95 KB )
  98. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/route/RuleItem.php ( 9.78 KB )
  99. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/route/app.php ( 1.72 KB )
  100. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/facade/Route.php ( 4.70 KB )
  101. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/route/dispatch/Controller.php ( 4.74 KB )
  102. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/route/Dispatch.php ( 10.44 KB )
  103. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/app/controller/Index.php ( 4.81 KB )
  104. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/app/BaseController.php ( 2.05 KB )
  105. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/facade/Db.php ( 0.93 KB )
  106. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/db/connector/Mysql.php ( 5.44 KB )
  107. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/db/PDOConnection.php ( 52.47 KB )
  108. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/db/Connection.php ( 8.39 KB )
  109. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/db/ConnectionInterface.php ( 4.57 KB )
  110. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/db/builder/Mysql.php ( 16.58 KB )
  111. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/db/Builder.php ( 24.06 KB )
  112. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/db/BaseBuilder.php ( 27.50 KB )
  113. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/db/Query.php ( 15.71 KB )
  114. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/db/BaseQuery.php ( 45.13 KB )
  115. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/db/concern/TimeFieldQuery.php ( 7.43 KB )
  116. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/db/concern/AggregateQuery.php ( 3.26 KB )
  117. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/db/concern/ModelRelationQuery.php ( 20.07 KB )
  118. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/db/concern/ParamsBind.php ( 3.66 KB )
  119. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/db/concern/ResultOperation.php ( 7.01 KB )
  120. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/db/concern/WhereQuery.php ( 19.37 KB )
  121. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/db/concern/JoinAndViewQuery.php ( 7.11 KB )
  122. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/db/concern/TableFieldInfo.php ( 2.63 KB )
  123. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/db/concern/Transaction.php ( 2.77 KB )
  124. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/log/driver/File.php ( 5.96 KB )
  125. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/contract/LogHandlerInterface.php ( 0.86 KB )
  126. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/log/Channel.php ( 3.89 KB )
  127. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/event/LogRecord.php ( 1.02 KB )
  128. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-helper/src/Collection.php ( 16.47 KB )
  129. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/facade/View.php ( 1.70 KB )
  130. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/View.php ( 4.39 KB )
  131. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/Response.php ( 8.81 KB )
  132. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/response/View.php ( 3.29 KB )
  133. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/Cookie.php ( 6.06 KB )
  134. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-view/src/Think.php ( 8.38 KB )
  135. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/contract/TemplateHandlerInterface.php ( 1.60 KB )
  136. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-template/src/Template.php ( 46.61 KB )
  137. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-template/src/template/driver/File.php ( 2.41 KB )
  138. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-template/src/template/contract/DriverInterface.php ( 0.86 KB )
  139. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/runtime/temp/067d451b9a0c665040f3f1bdd3293d68.php ( 11.98 KB )
  140. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-trace/src/Html.php ( 4.42 KB )
  1. CONNECT:[ UseTime:0.000975s ] mysql:host=127.0.0.1;port=3306;dbname=f_mffb;charset=utf8mb4
  2. SHOW FULL COLUMNS FROM `fenlei` [ RunTime:0.001427s ]
  3. SELECT * FROM `fenlei` WHERE `fid` = 0 [ RunTime:0.000727s ]
  4. SELECT * FROM `fenlei` WHERE `fid` = 63 [ RunTime:0.000649s ]
  5. SHOW FULL COLUMNS FROM `set` [ RunTime:0.001236s ]
  6. SELECT * FROM `set` [ RunTime:0.000634s ]
  7. SHOW FULL COLUMNS FROM `article` [ RunTime:0.001445s ]
  8. SELECT * FROM `article` WHERE `id` = 495215 LIMIT 1 [ RunTime:0.001088s ]
  9. UPDATE `article` SET `lasttime` = 1783067940 WHERE `id` = 495215 [ RunTime:0.001492s ]
  10. SELECT * FROM `fenlei` WHERE `id` = 66 LIMIT 1 [ RunTime:0.000518s ]
  11. SELECT * FROM `article` WHERE `id` < 495215 ORDER BY `id` DESC LIMIT 1 [ RunTime:0.000861s ]
  12. SELECT * FROM `article` WHERE `id` > 495215 ORDER BY `id` ASC LIMIT 1 [ RunTime:0.002331s ]
  13. SELECT * FROM `article` WHERE `id` < 495215 ORDER BY `id` DESC LIMIT 10 [ RunTime:0.005015s ]
  14. SELECT * FROM `article` WHERE `id` < 495215 ORDER BY `id` DESC LIMIT 10,10 [ RunTime:0.011991s ]
  15. SELECT * FROM `article` WHERE `id` < 495215 ORDER BY `id` DESC LIMIT 20,10 [ RunTime:0.002595s ]
0.127783s