当前位置:首页>python>python模拟样卷(一)

python模拟样卷(一)

  • 2026-07-02 16:38:13
python模拟样卷(一)
本卷共有3道大题:
一、单项选择题(40道小题,共40分)
1.以下选项中,不是Python程序打开方式的是( A   )。
A、Office
B、Windows系统的命令行工具
C、带图形界面的Python Shell-IDLE  
D、命令行版本的Python Shell-Python 3.x
2.以下不是 Python 语言的特点的是( D   )。
A、语言简单
B、开源
C、面向对象
D、专属于某个特定的平台
3.x = 12.34;print(type(x))的输出结果是( B )。
A、<class 'int'>
B、<class 'float'>
C、<class 'bool'>
D、<class 'complex'>
4.Python 中依次执行语句:world ='world',print('Hello'+world),其结果是( A   )。
 A、HelloWorld
B、'Hello'+"world"
C、'Hello'+world
D、程序会报错
5.下列表示换行符的是( C  )。
A、/n
B、\r
 C、\n
D、\O
6.用if语句统计符合报名条件的人数,条件是女性年龄大于18岁小于25岁,下列正确的语句是( C  
A、if sex=="女" or age<25 and age>18:n+=1
B、if sex=="女" and age<25 or age>18:n+=1
 C、if sex=="女" and (age<25 and age>18):n+=1
D、if sex=="女" or (mark<25 or age>18):n+=1
7.下列语句能使y为x的平方成立的是( A     
A、if x>y and x<2*y:y=pow(x,2)
B、if x>y : x<2*y:y=x**2
C、if x>y and x<2*y:y=x*2
D、if x>y and x<2*y:y=x2
8.设a=[1,2,3],执行代码print("{} is float".format(a))if isinstance(a,float) else print("{} is not float".format(a))后,输出结果是( C   
A、a is float  
B、a is <class ' float t'>  
C、[1, 2, 3] is not float
D、出错
9.闰年的判定条件是能被400整除,或者能被4整除但不能被100整除,正确的python表达式为( A  )。
A、(year%400==0) or (year%4==0 and year%100!=0)
B、year%400==0 and year%4==0 and year%100!=0
C、(year//400==0) or (year//4==0 and year//100!=0)
D、year//400==0 or year//4==0 and year//100!=0
10.以下选项中能够实现Python循环结构的是( C  )。
A、loop
B、do...for
C、while
D、if
11.执行代码for i in range(1,10,2): 换行print(i,end=",") 后的输出结果是(  C  )。
A、1,4,
B、1,4,7,
C、1,3,5,7,9,
D、1,3,
12.以下可以只终结本次循环的保留字是(D )。
A、if
B、break
C、exit
 D、continue
13.给出如下代码:sum = 0;for i in range(1,11):换行 sum += i; print(sum),以下选项中描述正确的是( D  )。
A、循环内语句块执行了11次
B、sum += i可以写为s=s+ i
C、如果print(sum)语句完全左对齐,输出结果不变
D、输出的最后一个数字是55
14.以下选项中,属于函数的作用的是( D  )。
A、复用代码
B、降低编程复杂度
C、增强代码可读性
D、以上三项
15.匿名函数的特点不包括( B  )。
A、只包含一个表达式,函数体比 def定义的函数的函数体简单很多,更加简洁
B、匿名函数跟普通函数一样可以在多个地方重用
C、因为匿名函数的表达式的主体是一个表达式,而不是一个代码块,所以仅能在lambda 表达式中封装有限的逻辑
D、匿名函数拥有自己的命名空间,且不能访问自己参数列表之外或全局命名空间里的参数
16.函数如下:\n def showNnumber(numbers)\n for n in numbers:\n print(n)\n 下面(  C  )在调用函数时会报错。
A、showNnumer([2,4,5])    
B、showNnumber('abcesf')
C、showNnumber (3.4)
D、showNnumber ((12,4,5))
17.在tkinter中,以下不正确的描述是( B  )。
A、pack(), grid()和place()是tkinter控件的三种布局管理器
B、pack()允许单行多列
C、grid()允许多行多列
D、place()放到窗口中指定的坐标位置
18.w = Tk() \n w.geometry("700x260+500+300")表示( A   )。
A、创建一个宽度700,高度260窗体,位置距左边500,据上边300
B、创建一个宽度500,高度300窗体,位置距左边700,据上边260
C、创建一个宽度260,高度700窗体,位置距左边500,据上边300
D、创建一个宽度700,高度260窗体,位置距左边300,据上边500
19.使用tkinter设计窗体时,Text控件的属性不包含( D  )。
A、bg
B、font
C、bd
 D、command
20.在tkinter中,创建刻度条的函数是( D  )。
A、Label()
B、Listbox()
C、Scrollbar()
 D、Scale()
21.下面描述错误的是( C  )。
A、标准库是安装 Python 时自带的,不需要额外安装
B、第三方库需要额外安装
C、turtle 库、random 库、time 库和 jieba 库都是标准库
D、PyInstaller 库、jieba 库、wordcloud 库和 Matplotlib 库都是第三方库
22.关于模块的说法,以下错误的是( C   )。
A、Python中的模块,是一个独立的Python文件,以.py为扩展名,包含Python对象定义和Python语句
B、模块可以让我们有逻辑地组织 Python 代码段,把相关的代码分配到一个模块里能让代码更好用、更易懂
C、模块里可以定义函数、类和变量,但是不能包含会直接执行的代码,否则引入模块会直接运行,导致程序错误
D、模块可以被项目中的其他模块、一些脚本甚至是交互式的解析器所使用,其他程序可以通过引用,使用该模块里的函数等
23.已知import pygame,加载图片“f:/data/bgimg.jpg”的操作是( D   )。
A、pygame.in.load('f:/data/bgimg.jpg')
B、pygame.jpg.load('f:/data/bgimg.jpg')
C、pygame.jpeg.load('f:/data/bgimg.jpg')
D、pygame.image.load('f:/data/bgimg.jpg')
24.下列关于NumPy的说法中,错误的是( C  )。
A、NumPy拥有线性代数和随机数生成的内置函数
B、NumPy可以处理傅立叶变换和用于图形操作的例程
 C、NumPy能进行数组(限一维数组)的算术和逻辑运算
D、NumPy系统主要用于数学/科学计算,提供了许多高级的数值编程工具
24.已知from PIL import Image,若im是一张已经打开的图片,可以通过( D  )缩放这张图片。
A、im = resize(100,100)
B、im = resize((100,100))
C、im = im.resize(100,100)
D、im = im.resize((100,100))
25.下列关于pyplot的说法中,错误的是( C   )。
A、Matplotlib可用于Python脚本
B、pyplot可以生成等值图、饼图,还可以绘制谱图
 C、为了简单绘图,pyplot模块提供了与MATLAB完全不一样的界面
D、Matplotlib可以在各种平台上以各种硬拷贝格式和交互式环境生成出具有出版品质的图形
26.L2 = [1,2,3,4];L3 = L2.reverse();print(L3)的输出结果是( B )。
A、[1,2,3,]
B、None
C、[4, 3, 2, 1]
D、[3, 2, 1]
27.下面选项中,( C  )是Python的可更改数据类型。
A、字符串
B、元组
C、列表
D、数字
28.若 a = (1, 2, 3),下列( C  )操作是非法的。
A、a[1:-1]
B、a*3
C、a[2] = 4
D、list(a)
29.可以在cmd终端安装jieba拓展包的是( D   )。
A、install jieba
B、uninstall jieba
C、pip uninstall jieba
D、pip install jieba
30.turtle.clear()方法的作用是( B   )。
A、撤销上一个 turtle动作
B、清空turtle窗口,但是turtle的位置和状态不会改变
C、清空 turtle窗口,重置 turtle状态为起始状态
D、设置 turtle图形可见
33.turtle.color("red","yellow")命令中定义的颜色分别为( C  )。
A、背景为红色,画笔为黄色
B、背景为黄色,画笔为红色
C、画笔为红色,填充为黄色
D、画笔为黄色,填充为红色
34.关于角度,下列选项描述错误的( C  )。
A、turtle.seth(angle)函数中的角度是绝对角度
B、turtle.left(angle)函数中的角度是相对角度
C、turtle.right(angle)函数中的角度是绝对角度
D、绝对角度是相对画布而言的
35.下面代码中,海龟走到指定坐标然后左转90度的是( A  )。
A、turtle.goto(90,0)、turtle.left(90)
B、turtle.left(90)、turtle.goto(90,0)
C、turtle.goto(90,0)、turtle.right(90)
D、turtle.right(90)、turtle.goto(90,0)
36.完整的计算机文件名包含( D  )。
A、文件名
B、路径
C、后缀
D、以上三项
37.不能被读取的文件打开方式是( D )。
A、r
B、r+
C、w+
D、w
38.在Python 文件和目录操作中,( A  )方法获的当前工作目录。
A、getcwd()
B、mkdir()
C、removedir()
D、listdir()
39.下列选项中的说法正确的是( B )。
A、Python中的继承是只是单继承的
 B、Python中的继承可以是多继承的
C、Python中没有继承的概念
D、Python中的继承是选择性的
40.Python连接SQLite3数据库的函数( B   )。
A、run()
 B、connect()
C、cursor()
D、execute()
二、判断题(10道小题,共10分)
1.已知 x = 3,那么赋值语句 x = 'abcedfg' 是无法正常执行的。N
2.集合可以作为列表的元素。 Y
3.已知x为非空字符串,那么表达式 ''.join(x.split()) == x 的值一定为True。 N
4.在调用函数时,必须牢记函数形参顺序才能正确传值。N
5.Python中一切内容都可以称为对象。Y
6.以读模式打开文件时,文件指针指向文件开始处。Y
7.双分支选择结构的行命令格式是:if 条件 表达式1 else 表达式2。N
8.用于操作数据库的对象是cursor。Y
9.可以使用py2exe或pyinstaller等扩展库把Python源程序打包成为exe文件,从而脱离Python环境在Windows平台上运行。Y
10.异常处理结构也不是万能的,处理异常的代码也有引发异常的可能。Y
三、程序应用题(8道小题,共50分)
3-1* 下面程序用来输出如图{<408.jpg>}所示图案,请填空。

for i in range(1,5):
    print('  '  *  (4-i),end='')
for j in range(1,  i   ):
print(j,end='')
for j in range(i,0,-1):
print(j,end='')
print()
print()
3-2* 随机产生 n(n<=101) 个两位整数,求出其中的最大值和最小值。
* 完成下面程序。
import random
while True:
n=eval(input("请输入需要产生的随机数的个数:"))
if 2<=n<=101:
break
ma=random.randint(10,99)
  mi   =ma
for t in range(  2   ,n+1,1):
x=random.randint(10,99)
if ma<x:
ma=x
if mi>x:
mi=x
print(ma,mi)
3-3* 已知文本文件data.txt中的内容如下:
202101001150章明男
202107000123李悦灵女
202102000913欧阳紫玉女
读取文本文件data.txt,将学号、姓名、性别插入到数据库Student.db的stu表中。
import sqlite3
con = sqlite3.connect('student.db')
cur = con.cursor()
cur.execute('create table if not exists stu(id primary key,name text,sex text)')
fr = open('data.txt','r')
for line in fr.readlines():
L=len(line)
if line[-1]=='\n':
L=L-1
line=   line [0:L]
xh=line[  0   :  12   ]
xm=line[12:L-1]
xb=line[-1:L]
print(xh,xm,xb)
cur.execute('insert into stu values(?,?,?)',(xh,xm,xb))
fr.close()
con.commit()
cur.close()
con.close()
3-4* 用子过程输出Fibonacci(斐波那契)数列(1、1、2、3、5、8...)的前20项及前20项的和。
* 程序代码如下:
def fib(n):
if n==1 or n==2:
  return    1
else:
f1,f2=1,1
for t in range(  3  ,n+1):
f=f1+f2
f1=f2
f2=f
return    f  
su=0
for i in range(1,21):
print(fib(i),end=' ')
su+=fib(i)
print()
print(su)
3-5* 利用turtle库绘制一个七边形,如图{<x_55.jpg>}所示。

* 程序代码如下:
import turtle
turtle.setup(500,500,300,300)
turtle.  penup  ()
turtle.goto(50,0)
turtle.  pendown  ()
turtle.color("red","blue")
turtle.begin_fill()
turtle.circle (-100,   steps   =7)
turtle.end_fill ()
turtle.hideturtle()
3-6* 下列程序的功能是:求出500以内最大的10个能被13或17整除的自然数之和。
* 请填空:
s  ,n=  0  ,0
for t in range(500,0,-1):
if t%13  ==  0    or    t%17  ==  0:
  n  += __1___
s+=t
if  n  ==10:
  break  
print(s)
程序运行的结果是  4622  
12* 读取文件{<wj013.txt>}中的字符,统计其数字个数。把结果写入试卷中指定位置。
* 请填空:
sz=0
with open("D:\\wj013.txt","rt") as fp :
ch=fp.read(24)[-1]
   fp   .    seek   (    0   ,    0   )
st=fp.readlines()
   s   =''.    join   (st)
for i in range(len(s)):
if '0'<=   s  [  i ]<='9':
sz+=1  
print(ch+   str   (sz)+ch)
程序运行的结果是   -270-   

最新文章

随机文章

基本 文件 流程 错误 SQL 调试
  1. 请求信息 : 2026-07-03 12:16:03 HTTP/2.0 GET : https://f.mffb.com.cn/a/495607.html
  2. 运行时间 : 0.187705s [ 吞吐率:5.33req/s ] 内存消耗:4,615.74kb 文件加载:140
  3. 缓存信息 : 0 reads,0 writes
  4. 会话信息 : SESSION_ID=aa0c2483ba9ce2540f3180b9a05183ff
  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.001139s ] mysql:host=127.0.0.1;port=3306;dbname=f_mffb;charset=utf8mb4
  2. SHOW FULL COLUMNS FROM `fenlei` [ RunTime:0.001735s ]
  3. SELECT * FROM `fenlei` WHERE `fid` = 0 [ RunTime:0.000786s ]
  4. SELECT * FROM `fenlei` WHERE `fid` = 63 [ RunTime:0.000688s ]
  5. SHOW FULL COLUMNS FROM `set` [ RunTime:0.001350s ]
  6. SELECT * FROM `set` [ RunTime:0.000596s ]
  7. SHOW FULL COLUMNS FROM `article` [ RunTime:0.000889s ]
  8. SELECT * FROM `article` WHERE `id` = 495607 LIMIT 1 [ RunTime:0.004133s ]
  9. UPDATE `article` SET `lasttime` = 1783052163 WHERE `id` = 495607 [ RunTime:0.064093s ]
  10. SELECT * FROM `fenlei` WHERE `id` = 66 LIMIT 1 [ RunTime:0.000931s ]
  11. SELECT * FROM `article` WHERE `id` < 495607 ORDER BY `id` DESC LIMIT 1 [ RunTime:0.001413s ]
  12. SELECT * FROM `article` WHERE `id` > 495607 ORDER BY `id` ASC LIMIT 1 [ RunTime:0.001041s ]
  13. SELECT * FROM `article` WHERE `id` < 495607 ORDER BY `id` DESC LIMIT 10 [ RunTime:0.005590s ]
  14. SELECT * FROM `article` WHERE `id` < 495607 ORDER BY `id` DESC LIMIT 10,10 [ RunTime:0.007736s ]
  15. SELECT * FROM `article` WHERE `id` < 495607 ORDER BY `id` DESC LIMIT 20,10 [ RunTime:0.009003s ]
0.191451s