当前位置:首页>python>Python玫瑰《给阿嬷的情书》

Python玫瑰《给阿嬷的情书》

  • 2026-07-02 16:48:13
Python玫瑰《给阿嬷的情书》
最近刚看完《给阿嬷的情书》,最触动我的是电影里女性之间的共情与善意:她们彼此理解、彼此托住,温柔有力量。一朵玫瑰,一份情绪;真心推荐这部电影《给阿嬷的情书》。

520,一个小小的 turtle 程序。

先手写“给阿嬷的情书”,再一笔一笔画出玫瑰,最后让“江海有岸 团圆可盼”慢慢显现。

画布是做旧纸张色,字是华文行楷,玫瑰保持一笔一笔的动画感。最后那两行字不是直接出现,而是用浅到深的颜色叠写,像墨慢慢渗进纸里。

import turtle as tuimport time# 设置画布screen = tu.Screen()screen.setup(width=700, height=750)screen.title("给阿嬷的情书")screen.bgcolor("#EDE0BE")screen.tracer(15)def draw_title():    """逐字手写标题:给阿嬷的情书"""    t = tu.Turtle()    t.hideturtle()    t.speed(0)    t.penup()    t.color('#1B2A45')    text = "给阿嬷的情书"    char_w = 58    start_x = -(len(text) * char_w) // 2 + char_w // 2    y_pos = 195    for i, char in enumerate(text):        t.goto(start_x + i * char_w - char_w // 2, y_pos)        t.write(char, font=("华文行楷"52"normal"))        time.sleep(0.3)def draw_rose_words():    """在玫瑰留白处写入家书句子"""    t = tu.Turtle()    t.hideturtle()    t.speed(0)    t.penup()    # 从纸色到墨色分层写入,形成“渐变出现”效果    fade_colors = ["#C8B88F""#9C8F71""#5C5A63""#1B2A45"]    for c in fade_colors:        t.color(c)        t.goto(10055)        t.write("江海有岸", align="center", font=("华文行楷"15"normal"))        t.goto(10015)        t.write("团圆可盼", align="center", font=("华文行楷"15"normal"))        time.sleep(0.08)def draw_paper_texture():    """仿侨批泛黄纸张质感 —— 钢笔墨水落在做旧信纸上的效果"""    import random    t = tu.Turtle()    t.hideturtle()    t.speed(0)    t.penup()    # 信笺左侧两道红色边框线(侨批信笺特色格式)    t.pensize(1)    t.color("#B86858")    for x in [-295, -283]:        t.goto(x, 370)        t.pendown()        t.goto(x, -370)        t.penup()    # 标题下方装饰横线(将题首与正文玫瑰分隔)    t.pensize(1)    t.color("#9A7040")    t.goto(-185175)    t.pendown()    t.goto(185175)    t.penup()    # 岁月斑驳——做旧水渍斑点散落纸面    random.seed(520)    for _ in range(18):        x = random.randint(-330330)        y = random.randint(-370370)        t.goto(x, y)        t.color("#AA8850")        t.pendown()        t.dot(random.randint(14))        t.penup()class sketch:    def move_to(self,x ,y):        self.pen.up()        self.pen.goto(x, y)        self.pen.down()    def draw(self,retain=True):        coordinates = [([(-101, -254), (-111, -253), (-122, -251), (-133, -248), (-140, -242), (-145, -235), (-153, -240), (-165, -242), (-176, -243), (-186, -241), (-194, -235), (-201, -228), (-210, -226), (-222, -226), (-231, -223), (-239, -216), (-244, -209), (-245, -201), (-243, -192), (-241, -183), (-238, -175), (-240, -166), (-242, -156), (-243, -148), (-240, -141), (-231, -135), (-236, -132), (-245, -126), (-253, -119), (-256, -112), (-253, -103), (-247, -97), (-243, -91), (-241, -81), (-240, -70), (-238, -61), (-235, -55), (-228, -49), (-217, -46), (-205, -45), (-201, -41), (-195, -31), (-189, -25), (-181, -22), (-169, -21), (-154, -20), (-147, -18), (-145, -15), (-146, -4), (-1467), (-14716), (-14825), (-14935), (-15043), (-15152), (-15361), (-15470), (-15677), (-15888), (-16196), (-163101), (-167110), (-170118), (-174126), (-178135), (-182144), (-188155), (-192162), (-193161), (-194150), (-196140), (-197131), (-199123), (-204114), (-208117), (-206125), (-205135), (-205143), (-205152), (-206162), (-208169), (-210178), (-212187), (-215195), (-217203), (-220211), (-225219), (-230228), (-235237), (-240245), (-245253), (-248259), (-253266), (-259274), (-264283), (-271292), (-277301), (-282305), (-276308), (-266303), (-256298), (-244292), (-240288), (-236279), (-231273), (-224265), (-217257), (-209250), (-203243), (-197236), (-191229), (-185223), (-179215), (-173207), (-168199), (-163190), (-165187), (-173194), (-180201), (-187209), (-196217), (-198218), (-195212), (-189202), (-183191), (-177183), (-172174), (-168166), (-165159), (-162151), (-158143), (-151137), (-143132), (-133126), (-124122), (-113119), (-102116), (-92116), (-84119), (-78127), (-78136), (-78145), (-78153), (-78165), (-78176), (-77184), (-76187), (-75196), (-71206), (-66205), (-66199), (-62207), (-57216), (-54213), (-53206), (-50214), (-47224), (-41229), (-35233), (-30240), (-23249), (-17255), (-10262), (-2269), (7276), (15283), (20289), (26296), (33301), (38310), (43310), (41302), (35295), (27286), (20278), (16271), (14263), (12254), (11246), (10237), (9228), (7219), (7211), (7202), (3193), (0187), (2184), (6191), (8185), (4174), (0165), (0161), (7169), (12170), (9160), (3155), (-5146), (-12142), (-21137), (-30133), (-40128), (-53122), (-58120), (-57114), (-51117), (-37119), (-26120), (-17122), (-9124), (1126), (14129), (27131), (40134), (49136), (55139), (64144), (73151), (82159), (89164), (96170), (103175), (112182), (116189), (124193), (135200), (145206), (151206), (158212), (169216), (179219), (190220), (202218), (205214), (195211), (183206), (179202), (182198), (185198), (192203), (202201), (213199), (222197), (234192), (242186), (237183), (225185), (223183), (231180), (243176), (254172), (263168), (271164), (280157), (288149), (283146), (272149), (260152), (252151), (261146), (269141), (277134), (284128), (291120), (296113), (301104), (297102), (289108), (279113), (267117), (269113), (278106), (28699), (29192), (29684), (30076), (30368), (30759), (30951), (31142), (31333), (31424), (31414), (3158), (317, -1), (319, -11), (322, -17), (326, -28), (324, -31), (318, -23), (311, -16), (304, -10), (294, -5), (286, -2), (2752), (2635), (2529), (24313), (23517), (22524), (21929), (21437), (21145), (21254), (21947), (22239), (22833), (23627), (24621), (25318), (26513), (27310), (28110), (2936), (2962), (2902), (3000), (3019), (29515), (29023), (28930), (28440), (27949), (27455), (27648), (27351), (26759), (26167), (25674), (25467), (25864), (25955), (26347), (26440), (26633), (27327), (27921), (28215), (27117), (27020), (26525), (25931), (25934), (25643), (25548), (25158), (24964), (24873), (24279), (23382), (23290), (22497), (216103), (209107), (199111), (193116), (182116), (178115), (183109), (19099), (19591), (20085), (20483), (20090), (19498), (190107), (194103), (20093), (20586), (21179), (21572), (22368), (23069), (23062), (24064), (23460), (22959), (21961), (21067), (20275), (19781), (19189), (18697), (180104), (174111), (166118), (157121), (150123), (148120), (160113), (167107), (173101), (18093), (17992), (169100), (165104), (156111), (145118), (136122), (128124), (115125), (106125), (96124), (92120), (102114), (111111), (123107), (117112), (110114), (99117), (100122), (111118), (113120), (122114), (121118), (129118), (134115), (140113), (137110), (145104), (153101), (16193), (16290), (15397), (145100), (136107), (137104), (14796), (15591), (16588), (17387), (18487), (17882), (16882), (15784), (14889), (13995), (13299), (126104), (115105), (107107), (104107), (99109), (98113), (93116), (81116), (79120), (72121), (62119), (51117), (50114), (45113), (37113), (23111), (12109), (1108), (-8107), (-19105), (-30104), (-41104), (-56104), (-61102), (-5397), (-4293), (-3390), (-2287), (-1283), (-278), (674), (1567), (2160), (1559), (665), (462), (1454), (2248), (2640), (1942), (2038), (2729), (2921), (3017), (367), (43, -4), (49, -12), (55, -18), (61, -24), (70, -30), (79, -34), (76, -36), (65, -35), (54, -35), (53, -39), (44, -37), (33, -36), (20, -35), (10, -32), (0, -27), (-6, -25), (-10, -22), (-6, -31), (-13, -31), (-18, -24), (-26, -17), (-32, -9), (-38, -5), (-45, -2), (-494), (-5411), (-5617), (-5525), (-5732), (-6131), (-6329), (-6119), (-6315), (-6823), (-7232), (-7440), (-7649), (-7758), (-7868), (-7975), (-8183), (-8494), (-8999), (-99101), (-110103), (-121105), (-131109), (-141114), (-151119), (-152116), (-146110), (-140101), (-13594), (-13085), (-12677), (-12269), (-11861), (-11452), (-11144), (-10835), (-10527), (-10217), (-10613), (-10920), (-11429), (-11837), (-12346), (-12955), (-13161), (-13867), (-13861), (-13451), (-13243), (-13033), (-12825), (-12717), (-1268), (-125, -1), (-125, -10), (-125, -19), (-119, -25), (-109, -29), (-100, -33), (-91, -38), (-82, -42), (-74, -48), (-69, -55), (-65, -65), (-63, -72), (-55, -79), (-49, -86), (-48, -93), (-49, -104), (-50, -112), (-48, -120), (-43, -127), (-37, -136), (-36, -143), (-42, -151), (-52, -156), (-48, -161), (-47, -168), (-48, -179), (-51, -186), (-52, -194), (-48, -203), (-44, -212), (-42, -220), (-44, -228), (-50, -235), (-60, -239), (-70, -236), (-78, -234), (-85, -244), (-92, -249), (-101, -254)], (0.00.00.0)), ([(-122, -247), (-114, -245), (-107, -242), (-100, -243), (-92, -245), (-86, -241), (-83, -235), (-88, -232), (-94, -226), (-100, -221), (-105, -216), (-109, -211), (-113, -205), (-111, -202), (-113, -196), (-116, -188), (-119, -180), (-121, -173), (-123, -169), (-126, -164), (-131, -157), (-135, -155), (-132, -162), (-129, -168), (-127, -174), (-126, -180), (-125, -187), (-124, -195), (-126, -199), (-126, -206), (-127, -200), (-129, -204), (-130, -210), (-130, -218), (-126, -222), (-130, -226), (-136, -228), (-143, -229), (-140, -235), (-136, -241), (-130, -245), (-122, -247)], (1.01.01.0)), ([(-117, -241), (-121, -242), (-123, -240), (-126, -240), (-130, -241), (-130, -237), (-127, -236), (-126, -238), (-124, -237), (-122, -240), (-120, -241), (-121, -238), (-121, -234), (-121, -233), (-119, -234), (-115, -235), (-112, -238), (-113, -239), (-117, -241)], (0.00.00.0)), ([(-175, -240), (-173, -239), (-174, -236), (-177, -235), (-180, -234), (-184, -233), (-188, -233), (-188, -234), (-186, -236), (-182, -238), (-178, -239), (-175, -240)], (1.01.01.0)), ([(-96, -239), (-99, -238), (-103, -236), (-105, -236), (-104, -234), (-106, -233), (-108, -230), (-108, -227), (-110, -225), (-113, -222), (-115, -219), (-112, -218), (-111, -220), (-113, -221), (-108, -221), (-107, -223), (-105, -226), (-102, -228), (-100, -230), (-99, -233), (-96, -235), (-94, -237), (-96, -239)], (0.00.00.0)), ([(-161, -237), (-156, -235), (-151, -232), (-149, -231), (-146, -230), (-151, -226), (-154, -221), (-157, -217), (-160, -213), (-162, -206), (-164, -201), (-165, -195), (-166, -189), (-166, -183), (-166, -176), (-165, -171), (-165, -168), (-169, -174), (-172, -179), (-175, -185), (-177, -190), (-179, -196), (-182, -201), (-185, -207), (-189, -213), (-193, -216), (-199, -218), (-200, -223), (-193, -226), (-186, -228), (-179, -228), (-172, -230), (-167, -234), (-161, -237)], (1.01.01.0)), ([(-60, -234), (-54, -233), (-49, -228), (-46, -224), (-47, -218), (-48, -212), (-52, -206), (-55, -200), (-56, -194), (-56, -188), (-55, -182), (-58, -177), (-51, -176), (-50, -170), (-51, -164), (-56, -160), (-63, -157), (-71, -154), (-77, -153), (-84, -150), (-86, -153), (-87, -158), (-87, -163), (-87, -169), (-87, -176), (-87, -184), (-87, -191), (-87, -198), (-86, -203), (-84, -207), (-81, -213), (-77, -217), (-72, -222), (-68, -218), (-70, -214), (-68, -207), (-68, -202), (-69, -195), (-68, -190), (-69, -184), (-71, -178), (-67, -174), (-65, -177), (-65, -182), (-64, -190), (-63, -196), (-61, -201), (-58, -205), (-60, -207), (-60, -212), (-65, -208), (-64, -213), (-61, -219), (-59, -225), (-57, -231), (-61, -232), (-68, -228), (-73, -223), (-73, -229), (-68, -233), (-60, -234)], (1.01.01.0)), ([(-78, -230), (-79, -223), (-86, -215), (-92, -208), (-98, -201), (-103, -194), (-108, -186), (-112, -177), (-117, -167), (-120, -165), (-116, -173), (-113, -181), (-111, -190), (-108, -199), (-104, -207), (-100, -214), (-94, -222), (-86, -228), (-78, -230)], (1.01.01.0)), ([(-215, -220), (-214, -217), (-217, -215), (-219, -211), (-218, -207), (-220, -209), (-222, -209), (-223, -203), (-220, -204), (-220, -199), (-217, -200), (-214, -199), (-211, -200), (-208, -197), (-206, -192), (-205, -187), (-205, -182), (-205, -177), (-206, -173), (-207, -168), (-208, -163), (-208, -159), (-209, -154), (-210, -149), (-210, -144), (-211, -139), (-213, -138), (-221, -138), (-229, -138), (-234, -139), (-237, -142), (-239, -147), (-236, -150), (-237, -154), (-237, -159), (-236, -164), (-235, -168), (-232, -171), (-233, -173), (-231, -177), (-234, -181), (-237, -185), (-239, -190), (-240, -194), (-241, -199), (-241, -204), (-239, -209), (-237, -213), (-233, -215), (-228, -216), (-226, -219), (-219, -220), (-215, -220)], (1.01.01.0)), ([(-170, -222), (-174, -222), (-176, -220), (-175, -217), (-176, -214), (-178, -212), (-178, -209), (-175, -209), (-170, -210), (-172, -211), (-169, -213), (-168, -214), (-172, -215), (-173, -216), (-170, -219), (-167, -220), (-165, -221), (-170, -222)], (0.00.00.0)), ([(-139, -219), (-140, -213), (-141, -207), (-140, -199), (-140, -194), (-139, -187), (-138, -180), (-137, -173), (-137, -166), (-139, -160), (-142, -152), (-146, -146), (-151, -148), (-155, -153), (-156, -159), (-160, -164), (-161, -169), (-162, -178), (-162, -186), (-162, -194), (-161, -199), (-156, -203), (-158, -208), (-154, -215), (-147, -216), (-139, -219)], (1.01.01.0)), ([(-206, -216), (-199, -214), (-194, -211), (-189, -206), (-185, -200), (-182, -195), (-180, -189), (-182, -187), (-190, -190), (-196, -194), (-201, -198), (-206, -203), (-210, -209), (-211, -214), (-206, -216)], (1.01.01.0)), ([(-136, -213), (-134, -207), (-131, -197), (-130, -188), (-129, -181), (-131, -173), (-133, -173), (-133, -184), (-135, -188), (-137, -197), (-137, -209), (-136, -213)], (1.01.01.0)), ([(-81, -205), (-81, -204), (-80, -200), (-80, -193), (-78, -191), (-80, -186), (-81, -181), (-79, -180), (-78, -183), (-77, -191), (-78, -199), (-79, -203), (-81, -205)], (0.00.00.0)), ([(-149, -205), (-152, -203), (-152, -200), (-153, -195), (-153, -191), (-154, -186), (-154, -183), (-154, -180), (-151, -181), (-148, -184), (-147, -186), (-147, -190), (-148, -195), (-149, -199), (-148, -202), (-149, -205)], (0.00.00.0)), ([(-90, -204), (-90, -198), (-92, -191), (-93, -181), (-93, -174), (-93, -172), (-93, -163), (-93, -152), (-94, -143), (-95, -136), (-96, -131), (-96, -125), (-100, -119), (-104, -113), (-110, -106), (-115, -103), (-124, -98), (-131, -95), (-139, -95), (-145, -96), (-148, -105), (-147, -111), (-150, -115), (-149, -124), (-147, -131), (-144, -137), (-138, -142), (-129, -148), (-123, -152), (-119, -158), (-114, -164), (-110, -171), (-107, -177), (-104, -183), (-99, -191), (-94, -200), (-90, -204)], (1.01.01.0)), ([(-218, -193), (-220, -192), (-220, -190), (-220, -186), (-219, -184), (-217, -184), (-215, -182), (-216, -181), (-220, -182), (-222, -180), (-223, -180), (-223, -177), (-223, -173), (-222, -172), (-220, -173), (-218, -175), (-219, -176), (-220, -178), (-218, -179), (-215, -180), (-214, -182), (-213, -184), (-211, -185), (-213, -188), (-215, -188), (-218, -190), (-219, -192), (-218, -193)], (0.00.00.0)), ([(-196, -190), (-190, -185), (-184, -184), (-180, -180), (-178, -175), (-173, -170), (-168, -163), (-164, -158), (-161, -152), (-155, -145), (-151, -141), (-153, -135), (-154, -129), (-156, -119), (-156, -113), (-157, -110), (-154, -103), (-151, -97), (-147, -92), (-154, -91), (-165, -91), (-173, -92), (-180, -94), (-189, -98), (-196, -101), (-199, -107), (-202, -114), (-204, -121), (-205, -127), (-205, -134), (-205, -142), (-204, -148), (-203, -155), (-202, -161), (-202, -167), (-201, -175), (-201, -182), (-201, -189), (-196, -190)], (1.01.01.0)), ([(-226, -167), (-228, -167), (-228, -162), (-228, -158), (-230, -156), (-232, -154), (-228, -153), (-226, -151), (-229, -149), (-229, -148), (-225, -148), (-222, -146), (-218, -147), (-217, -148), (-221, -150), (-222, -153), (-223, -156), (-224, -159), (-223, -162), (-221, -165), (-218, -163), (-216, -162), (-215, -165), (-218, -166), (-223, -166), (-226, -167)], (0.00.00.0)), ([(-168, -151), (-172, -149), (-169, -146), (-168, -142), (-167, -137), (-167, -133), (-168, -129), (-169, -126), (-171, -121), (-173, -118), (-172, -115), (-171, -110), (-171, -105), (-174, -107), (-179, -108), (-178, -104), (-178, -102), (-173, -98), (-171, -100), (-169, -99), (-166, -100), (-166, -101), (-167, -105), (-167, -110), (-169, -112), (-169, -117), (-166, -119), (-164, -121), (-164, -128), (-163, -132), (-160, -131), (-159, -134), (-163, -135), (-164, -138), (-164, -143), (-166, -148), (-168, -151)], (0.00.00.0)), ([(-55, -151), (-50, -149), (-54, -145), (-58, -142), (-64, -141), (-68, -141), (-62, -138), (-59, -135), (-57, -135), (-50, -140), (-50, -143), (-46, -147), (-42, -147), (-39, -142), (-40, -137), (-43, -133), (-47, -129), (-51, -125), (-53, -120), (-54, -116), (-54, -111), (-53, -105), (-52, -99), (-52, -94), (-52, -90), (-54, -86), (-59, -81), (-63, -79), (-66, -81), (-72, -79), (-68, -79), (-73, -78), (-75, -78), (-82, -77), (-86, -80), (-93, -82), (-97, -85), (-101, -90), (-104, -92), (-109, -96), (-109, -101), (-105, -103), (-100, -108), (-97, -112), (-94, -116), (-92, -121), (-89, -126), (-88, -130), (-87, -134), (-87, -140), (-84, -144), (-79, -147), (-73, -148), (-67, -149), (-61, -150), (-55, -151)], (1.01.01.0)), ([(-177, -149), (-178, -145), (-179, -143), (-180, -141), (-180, -136), (-180, -130), (-179, -127), (-178, -126), (-177, -129), (-177, -133), (-176, -138), (-175, -140), (-173, -138), (-169, -137), (-171, -140), (-175, -142), (-176, -145), (-177, -149)], (0.00.00.0)), ([(-190, -141), (-191, -138), (-192, -135), (-195, -135), (-196, -132), (-196, -129), (-197, -126), (-197, -124), (-194, -126), (-193, -123), (-196, -122), (-198, -120), (-196, -117), (-194, -117), (-195, -113), (-192, -114), (-192, -117), (-190, -119), (-190, -122), (-190, -125), (-189, -128), (-191, -130), (-191, -133), (-189, -134), (-189, -139), (-190, -141)], (0.00.00.0)), ([(-213, -135), (-211, -130), (-210, -122), (-210, -117), (-207, -112), (-203, -105), (-199, -98), (-195, -94), (-189, -92), (-180, -87), (-181, -91), (-173, -88), (-170, -84), (-172, -77), (-176, -71), (-180, -66), (-185, -61), (-191, -56), (-198, -53), (-205, -50), (-213, -49), (-220, -50), (-229, -53), (-234, -57), (-236, -63), (-235, -70), (-235, -74), (-236, -81), (-233, -86), (-237, -90), (-236, -93), (-242, -97), (-247, -102), (-251, -108), (-251, -114), (-247, -119), (-241, -124), (-235, -128), (-228, -129), (-220, -133), (-213, -135)], (1.01.01.0)), ([(-226, -125), (-228, -122), (-231, -121), (-234, -121), (-233, -118), (-232, -118), (-228, -119), (-228, -118), (-230, -115), (-230, -112), (-231, -109), (-232, -107), (-235, -105), (-237, -105), (-240, -105), (-238, -103), (-234, -101), (-234, -102), (-232, -105), (-228, -105), (-226, -106), (-224, -107), (-224, -110), (-220, -109), (-223, -110), (-226, -110), (-227, -113), (-227, -116), (-226, -119), (-226, -122), (-226, -125)], (0.00.00.0)), ([(-121, -123), (-124, -121), (-124, -119), (-125, -117), (-128, -114), (-126, -113), (-126, -110), (-126, -107), (-125, -105), (-125, -102), (-122, -104), (-120, -106), (-124, -105), (-123, -107), (-122, -108), (-121, -110), (-121, -115), (-121, -118), (-121, -120), (-121, -123)], (0.00.00.0)), ([(-117, -96), (-112, -93), (-108, -89), (-105, -84), (-100, -81), (-95, -79), (-88, -76), (-81, -74), (-75, -73), (-69, -72), (-68, -68), (-70, -62), (-71, -57), (-77, -55), (-81, -54), (-77, -49), (-82, -46), (-89, -43), (-94, -42), (-101, -42), (-108, -43), (-114, -44), (-120, -46), (-128, -47), (-132, -48), (-140, -46), (-144, -47), (-147, -49), (-148, -45), (-152, -42), (-158, -36), (-166, -30), (-171, -27), (-175, -25), (-180, -25), (-187, -27), (-191, -30), (-195, -36), (-190, -37), (-184, -38), (-182, -42), (-181, -50), (-184, -51), (-185, -46), (-184, -41), (-188, -43), (-195, -46), (-197, -49), (-191, -52), (-185, -54), (-182, -56), (-178, -61), (-173, -67), (-170, -70), (-169, -75), (-167, -80), (-165, -85), (-161, -86), (-153, -87), (-144, -87), (-140, -85), (-136, -88), (-130, -91), (-128, -90), (-122, -94), (-117, -96)], (1.01.01.0)), ([(-226, -95), (-228, -94), (-225, -92), (-226, -89), (-225, -86), (-222, -85), (-219, -84), (-216, -86), (-212, -89), (-214, -88), (-216, -88), (-218, -90), (-222, -91), (-222, -94), (-226, -95)], (0.00.00.0)), ([(-218, -83), (-220, -81), (-218, -79), (-217, -77), (-216, -73), (-216, -69), (-215, -65), (-214, -63), (-214, -61), (-213, -58), (-209, -56), (-206, -56), (-206, -58), (-209, -59), (-210, -62), (-210, -66), (-210, -70), (-208, -70), (-206, -70), (-209, -73), (-208, -74), (-212, -76), (-212, -79), (-211, -81), (-214, -82), (-218, -83)], (0.00.00.0)), ([(-94, -65), (-96, -63), (-97, -60), (-99, -58), (-101, -56), (-103, -53), (-100, -52), (-101, -54), (-97, -54), (-94, -52), (-92, -50), (-88, -52), (-88, -54), (-91, -56), (-91, -59), (-93, -61), (-94, -63), (-94, -65)], (0.00.00.0)), ([(-168, -52), (-170, -51), (-171, -45), (-172, -40), (-173, -37), (-176, -33), (-174, -32), (-170, -36), (-169, -40), (-167, -44), (-167, -49), (-168, -52)], (0.00.00.0)), ([(-132, -43), (-128, -43), (-123, -42), (-118, -41), (-115, -41), (-110, -40), (-106, -38), (-106, -36), (-111, -34), (-115, -34), (-116, -33), (-120, -33), (-120, -31), (-125, -28), (-130, -26), (-132, -25), (-137, -25), (-143, -25), (-145, -23), (-148, -24), (-150, -26), (-155, -26), (-159, -27), (-159, -30), (-155, -32), (-153, -34), (-152, -38), (-148, -38), (-144, -40), (-141, -42), (-137, -43), (-132, -43)], (1.01.01.0)), ([(-293, -35), (-296, -33), (-299, -29), (-300, -25), (-300, -21), (-300, -17), (-298, -20), (-295, -24), (-293, -28), (-292, -32), (-293, -35)], (0.00.00.0)), ([(38, -31), (40, -28), (43, -31), (48, -31), (53, -30), (53, -26), (50, -29), (47, -29), (46, -25), (50, -23), (54, -24), (52, -21), (47, -18), (46, -20), (43, -18), (40, -13), (37, -8), (34, -4), (320), (293), (276), (249), (2013), (1616), (1220), (1023), (1322), (1719), (2315), (2712), (2516), (2318), (2021), (1924), (1427), (1024), (626), (329), (431), (829), (932), (1530), (1334), (1037), (841), (444), (448), (250), (048), (-152), (055), (056), (454), (257), (060), (-563), (-867), (-671), (-973), (-1374), (-1778), (-1980), (-1378), (-1581), (-1981), (-2584), (-3186), (-3285), (-2881), (-2677), (-2976), (-3179), (-3483), (-3786), (-4185), (-3681), (-3578), (-3775), (-4074), (-4479), (-4582), (-4885), (-5290), (-5392), (-5794), (-6397), (-67100), (-71102), (-74101), (-77103), (-78100), (-7596), (-7494), (-7389), (-7284), (-7280), (-7175), (-7171), (-7067), (-7062), (-6958), (-6854), (-6555), (-6253), (-6149), (-5944), (-5644), (-5546), (-5649), (-5348), (-5044), (-4939), (-5137), (-5341), (-5942), (-5739), (-6039), (-6440), (-6636), (-6437), (-6139), (-5835), (-5334), (-5630), (-5327), (-5023), (-4720), (-4218), (-4520), (-4523), (-4225), (-3921), (-3917), (-3913), (-3610), (-376), (-394), (-381), (-353), (-336), (-313), (-30, -1), (-26, -5), (-23, -9), (-20, -9), (-16, -5), (-14, -7), (-11, -12), (-8, -15), (-5, -16), (-1, -19), (6, -22), (9, -24), (13, -25), (18, -26), (25, -28), (28, -28), (34, -30), (38, -31)], (1.01.01.0)), ([(32, -27), (27, -26), (24, -24), (20, -23), (17, -20), (13, -19), (9, -17), (8, -14), (11, -14), (9, -12), (2, -8), (1, -6), (0, -5), (-3, -1), (-73), (-106), (-138), (-1511), (-1515), (-1418), (-1020), (-821), (-716), (-416), (-712), (-1114), (-1112), (-910), (-118), (-87), (-44), (-11), (1, -1), (5, -4), (9, -7), (10, -7), (8, -2), (10, -2), (13, -5), (16, -5), (12, -8), (13, -10), (16, -13), (20, -16), (24, -16), (22, -19), (22, -20), (26, -19), (24, -22), (27, -22), (31, -19), (35, -19), (31, -21), (28, -23), (32, -24), (36, -27), (32, -27)], (0.00.00.0)), ([(-284, -21), (-287, -19), (-293, -11), (-298, -3), (-3002), (-3007), (-2997), (-2951), (-291, -5), (-287, -10), (-283, -16), (-284, -21)], (0.00.00.0)), ([(-135, -18), (-132, -12), (-133, -2), (-1348), (-13517), (-13625), (-13834), (-14043), (-14452), (-14244), (-14135), (-14027), (-13917), (-1396), (-139, -6), (-140, -13), (-135, -18)], (1.01.01.0)), ([(30, -14), (27, -13), (25, -11), (22, -8), (21, -6), (19, -4), (19, -1), (210), (23, -2), (260), (26, -1), (27, -5), (27, -8), (29, -10), (31, -13), (30, -14)], (0.00.00.0)), ([(-17, -4), (-20, -3), (-23, -1), (-262), (-274), (-288), (-2811), (-309), (-3212), (-3114), (-3017), (-3021), (-2923), (-2825), (-3325), (-3027), (-2727), (-2929), (-3231), (-3434), (-3437), (-3639), (-3741), (-4042), (-4442), (-4643), (-4647), (-4750), (-4349), (-4148), (-3648), (-3646), (-3442), (-3139), (-3036), (-2933), (-2832), (-2633), (-2630), (-2427), (-2624), (-2722), (-2518), (-2717), (-2414), (-2312), (-259), (-228), (-225), (-223), (-201), (-18, -2), (-17, -4)], (0.00.00.0)), ([(132), (92), (84), (44), (14), (-16), (18), (310), (112), (-113), (114), (514), (713), (710), (411), (58), (87), (85), (125), (126), (164), (173), (132)], (0.00.00.0)), ([(30411), (30516), (30421), (30327), (30332), (30238), (30144), (29951), (29758), (29561), (29366), (29071), (28775), (28881), (28686), (28088), (27792), (27098), (265102), (262106), (259109), (262115), (262117), (257117), (252114), (246118), (241121), (234123), (228125), (234128), (240129), (248128), (251125), (258123), (265124), (272124), (274126), (268131), (261135), (257137), (251140), (245143), (238147), (235151), (230150), (226154), (221157), (214157), (205157), (199157), (195160), (201160), (209161), (219161), (225160), (230162), (234160), (239158), (246160), (253158), (260157), (254161), (250164), (245167), (239168), (230169), (222171), (218173), (211175), (204177), (207179), (200180), (193181), (198182), (203186), (206183), (207188), (215189), (214193), (209195), (211192), (206191), (198192), (190192), (182192), (175192), (171194), (173197), (167195), (165199), (162194), (158191), (152186), (147187), (150191), (157196), (163201), (166204), (170206), (162204), (156201), (150197), (145194), (138194), (131189), (129186), (126180), (122176), (117173), (110168), (105165), (100161), (94156), (89152), (82147), (77145), (72144), (66139), (69140), (72138), (75141), (84141), (89144), (95144), (92139), (95142), (102142), (106141), (116143), (123144), (130145), (134141), (140139), (137137), (129137), (121136), (113136), (106136), (99136), (92136), (85135), (77134), (70133), (61132), (55131), (51129), (44129), (38129), (30127), (23126), (16125), (8123), (1122), (-6120), (-14118), (-22117), (-27116), (-32113), (-27113), (-20115), (-13116), (-5118), (2120), (10121), (15122), (21123), (16120), (7118), (1118), (-2116), (-12114), (-21112), (-22111), (-13111), (-6113), (1113), (9114), (14116), (21117), (28120), (32118), (39121), (44123), (50124), (58125), (67126), (73127), (77128), (86129), (93129), (101129), (108129), (117130), (121131), (127129), (135130), (137128), (143128), (152127), (158125), (161126), (170124), (177122), (185121), (184124), (175126), (170128), (162129), (163131), (163133), (156134), (149136), (154138), (159139), (164136), (171133), (179130), (187127), (189125), (198125), (203124), (207120), (215118), (219115), (226114), (222118), (218121), (225120), (231118), (237115), (241111), (248110), (252108), (259103), (26697), (27092), (26989), (26891), (26489), (26784), (26385), (25990), (25595), (24998), (243101), (246103), (239107), (232109), (226110), (219112), (222108), (229105), (22999), (23495), (23993), (24087), (24584), (25181), (24885), (24589), (24294), (24692), (25088), (25684), (26179), (26676), (27273), (27270), (27366), (27761), (28057), (28452), (28746), (29140), (29434), (29530), (29725), (30019), (30014), (30411)], (1.01.01.0)), ([(-3317), (-3418), (-3522), (-3725), (-3927), (-4130), (-4032), (-4237), (-4340), (-4239), (-4036), (-3832), (-3627), (-3423), (-3319), (-3317)], (0.00.00.0)), ([(-1422), (-1724), (-1827), (-2031), (-2134), (-2337), (-2539), (-2544), (-2643), (-2945), (-3349), (-3753), (-4055), (-4054), (-4352), (-4752), (-4855), (-4556), (-4356), (-4157), (-3659), (-3757), (-3554), (-3351), (-2949), (-3052), (-3255), (-3259), (-3561), (-3664), (-3867), (-3870), (-3674), (-3373), (-3072), (-3471), (-3270), (-2966), (-2763), (-2660), (-3057), (-2856), (-2652), (-2549), (-2246), (-1845), (-1643), (-1841), (-1736), (-1533), (-1330), (-1730), (-1328), (-1225), (-1422)], (0.00.00.0)), ([(21123), (20925), (20329), (19535), (18741), (18245), (18047), (17650), (17844), (18140), (18835), (19031), (18431), (17734), (17137), (16541), (15746), (15347), (14947), (14150), (13254), (12658), (12260), (12063), (11664), (11669), (11275), (10973), (11268), (11466), (11164), (11858), (12055), (12650), (13344), (13142), (12542), (11946), (11150), (10654), (10457), (10059), (9564), (9169), (8773), (8279), (7884), (7489), (7094), (6599), (61104), (56110), (56111), (64106), (68101), (7297), (7794), (7399), (69104), (64109), (58114), (58117), (64114), (68111), (73107), (78102), (8396), (8492), (8688), (9284), (9379), (9875), (9780), (9686), (10287), (10783), (11278), (11873), (12470), (12765), (13368), (13171), (13078), (13376), (13974), (14270), (14864), (15259), (15555), (16150), (16751), (17256), (16959), (16755), (16259), (16663), (16967), (17563), (17758), (18254), (18749), (19146), (19741), (20039), (20146), (20252), (20054), (20456), (20850), (20844), (20739), (21033), (21427), (21123)], (0.00.00.0)), ([(-5253), (-5551), (-5753), (-5857), (-5959), (-5560), (-5761), (-5965), (-6168), (-6171), (-6274), (-6378), (-6481), (-6685), (-6887), (-6990), (-7193), (-7094), (-6690), (-6387), (-6284), (-5983), (-5680), (-5476), (-5777), (-5979), (-5976), (-5774), (-5273), (-4872), (-4570), (-4970), (-4768), (-4765), (-5069), (-5467), (-5665), (-5264), (-4863), (-5061), (-5260), (-5257), (-5253)], (0.00.00.0)), ([(-652), (-952), (-1354), (-1758), (-2060), (-1759), (-1359), (-858), (-757), (-255), (-253), (-652)], (0.00.00.0)), ([(14951), (15153), (15056), (14858), (14558), (14360), (14462), (14763), (14564), (14265), (14067), (13769), (13669), (13566), (13464), (13665), (14065), (14163), (14061), (13959), (14160), (14358), (14355), (14555), (14753), (14951)], (1.01.01.0)), ([(-13067), (-13071), (-13275), (-13479), (-13684), (-13987), (-14291), (-14495), (-14699), (-14797), (-14692), (-14588), (-14685), (-14380), (-13976), (-13774), (-13468), (-13067)], (1.01.01.0)), ([(-73107), (-67107), (-63107), (-61109), (-60112), (-64111), (-67110), (-71112), (-73114), (-76112), (-78112), (-82113), (-87111), (-87108), (-88109), (-92111), (-96111), (-99109), (-103109), (-102107), (-97106), (-92106), (-87106), (-82106), (-77106), (-73107)], (1.01.01.0)), ([(-71116), (-66118), (-62120), (-60126), (-56129), (-54133), (-51138), (-48143), (-45147), (-42152), (-39158), (-36162), (-34165), (-32173), (-29173), (-28177), (-28182), (-26188), (-25193), (-29192), (-30193), (-28197), (-27200), (-27207), (-27213), (-26218), (-24223), (-22228), (-20233), (-16236), (-14241), (-11245), (-10250), (-14247), (-16242), (-20237), (-24233), (-27229), (-31227), (-29230), (-25236), (-21242), (-21245), (-25241), (-28236), (-32232), (-36226), (-37223), (-39217), (-40212), (-43208), (-40206), (-45203), (-48198), (-49193), (-53191), (-52186), (-54181), (-56184), (-59188), (-56193), (-54195), (-57199), (-60200), (-63194), (-65188), (-66183), (-66179), (-67173), (-68168), (-69163), (-67158), (-66154), (-67148), (-69143), (-69138), (-65138), (-66134), (-66131), (-65129), (-69126), (-72121), (-76116), (-71116)], (1.01.01.0)), ([(-141120), (-142123), (-145126), (-145128), (-147128), (-149127), (-151129), (-153131), (-157134), (-161137), (-164138), (-164137), (-161134), (-159132), (-157129), (-155127), (-151125), (-148122), (-145120), (-141120)], (1.01.01.0)), ([(221124), (219124), (215126), (212127), (210129), (210132), (211133), (215131), (218129), (221128), (223126), (226124), (227122), (224124), (221124)], (0.00.00.0)), ([(-42133), (-38135), (-37138), (-33140), (-31142), (-28140), (-24143), (-21145), (-19148), (-15150), (-11151), (-13154), (-11157), (-10161), (-8163), (-8166), (-11169), (-15170), (-15167), (-11167), (-13165), (-17165), (-18163), (-20160), (-25156), (-30152), (-32152), (-35154), (-38154), (-38150), (-40149), (-39146), (-38143), (-40143), (-43140), (-45138), (-47136), (-45133), (-49133), (-50130), (-46131), (-42133)], (1.01.01.0)), ([(206129), (203130), (198134), (194137), (191139), (186139), (182138), (177138), (172137), (166138), (163138), (164140), (172141), (177142), (181142), (178144), (175146), (180146), (184147), (180149), (175149), (170148), (173145), (169144), (164143), (159142), (155141), (150142), (147144), (142145), (137144), (133144), (130147), (126148), (128150), (133151), (136150), (140152), (145154), (147152), (145149), (146149), (152149), (153146), (153144), (157145), (159144), (163146), (167145), (167149), (162148), (158147), (154148), (156152), (152152), (149153), (153154), (158155), (160155), (160151), (164152), (170153), (169153), (164154), (166156), (171157), (176157), (181158), (187158), (189157), (194154), (197151), (199148), (201143), (203141), (206141), (211142), (218142), (224141), (228141), (232141), (237139), (238137), (232137), (229138), (226137), (221138), (216137), (214135), (210138), (205139), (200137), (203134), (208131), (206129)], (0.00.00.0)), ([(-61132), (-62137), (-61143), (-58149), (-54156), (-53161), (-51166), (-49173), (-47179), (-45185), (-43190), (-38195), (-38191), (-40184), (-41178), (-42171), (-42165), (-39167), (-39174), (-37181), (-33185), (-31184), (-31177), (-34172), (-37167), (-40161), (-44155), (-49148), (-53144), (-53142), (-57136), (-61132)], (0.00.00.0)), ([(-171143), (-171150), (-176159), (-181168), (-184176), (-189185), (-194193), (-199203), (-202209), (-204217), (-210227), (-215236), (-220238), (-224246), (-229254), (-235262), (-239271), (-244279), (-251286), (-260292), (-261291), (-256283), (-252279), (-248273), (-242264), (-236253), (-229242), (-222232), (-216222), (-211214), (-208208), (-204201), (-202193), (-198191), (-191180), (-188172), (-188164), (-182162), (-176151), (-178145), (-171143)], (1.01.01.0)), ([(100146), (95145), (99149), (100152), (104152), (111154), (117158), (122161), (125163), (131164), (136166), (141167), (145170), (151172), (154174), (161175), (164174), (158172), (154170), (150169), (146167), (141165), (134162), (128159), (125157), (120155), (115153), (110150), (105148), (100146)], (0.00.00.0)), ([(-27157), (-26160), (-27162), (-22166), (-18170), (-16173), (-13172), (-13175), (-11180), (-8184), (-5183), (-1180), (-3184), (-5187), (-4191), (-3195), (-4199), (-8200), (-6204), (-2207), (-1210), (-1214), (0219), (0223), (-3221), (-3217), (-5213), (-7209), (-6205), (-9206), (-9210), (-9214), (-8219), (-6221), (-6225), (-4230), (-2234), (0232), (1228), (2232), (2235), (3239), (4244), (4248), (6254), (7258), (8260), (9264), (6263), (4260), (5257), (2259), (-1259), (0254), (-1251), (-1247), (-6248), (-7245), (-2247), (-5244), (-7240), (-6236), (-8235), (-12235), (-8233), (-10231), (-13233), (-15231), (-16227), (-15227), (-13231), (-13226), (-16224), (-20222), (-20217), (-18220), (-15217), (-15213), (-20211), (-20207), (-21205), (-22201), (-22195), (-21191), (-18193), (-15196), (-13193), (-14189), (-18188), (-19184), (-20180), (-22182), (-23178), (-21178), (-23175), (-26171), (-30165), (-32160), (-32158), (-30156), (-27157)], (1.01.01.0))]        self.pen = tu.Turtle()        self.pen.speed(0)        self.pen.hideturtle()        for path_col in coordinates:            #choosing color            f = 1            self.pen.color            ('black')            path = path_col[0]            col = path_col[1]            if col == (1.01.01.0):                col = (0.940.880.76)   # 泛黄奶白:替代纯白,融入皮纸底色            elif col == (0.00.00.0):                col = (0.100.130.22)   # 深蓝黑:钢笔墨水色            self.pen.color(col)            self.pen.begin_fill()            next = 0            for coord in path:                x, y = coord                x = int(x * 0.6 - 8)                y = int(-y * 0.6 - 20)                if f:                    self.move_to(x, y)                    f = 0                else:                    self.pen.goto(x, y)            self.pen.end_fill()        if retain == True:            self.pen.hideturtle()            draw_rose_words()            tu.done()draw_paper_texture()draw_title()pen = sketch()pen.draw()   

写给今天520 的“爱你”,不一定要很大声,也可以是很安静的一封python家书

 电影推荐《给阿嬷的情书》

最新文章

随机文章

基本 文件 流程 错误 SQL 调试
  1. 请求信息 : 2026-07-03 06:42:42 HTTP/2.0 GET : https://f.mffb.com.cn/a/494847.html
  2. 运行时间 : 0.414020s [ 吞吐率:2.42req/s ] 内存消耗:4,699.13kb 文件加载:140
  3. 缓存信息 : 0 reads,0 writes
  4. 会话信息 : SESSION_ID=6832813a687aaad3732c0d20cd1db293
  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.001042s ] mysql:host=127.0.0.1;port=3306;dbname=f_mffb;charset=utf8mb4
  2. SHOW FULL COLUMNS FROM `fenlei` [ RunTime:0.001407s ]
  3. SELECT * FROM `fenlei` WHERE `fid` = 0 [ RunTime:0.006907s ]
  4. SELECT * FROM `fenlei` WHERE `fid` = 63 [ RunTime:0.000720s ]
  5. SHOW FULL COLUMNS FROM `set` [ RunTime:0.001638s ]
  6. SELECT * FROM `set` [ RunTime:0.001109s ]
  7. SHOW FULL COLUMNS FROM `article` [ RunTime:0.001867s ]
  8. SELECT * FROM `article` WHERE `id` = 494847 LIMIT 1 [ RunTime:0.007696s ]
  9. UPDATE `article` SET `lasttime` = 1783032162 WHERE `id` = 494847 [ RunTime:0.026651s ]
  10. SELECT * FROM `fenlei` WHERE `id` = 66 LIMIT 1 [ RunTime:0.005298s ]
  11. SELECT * FROM `article` WHERE `id` < 494847 ORDER BY `id` DESC LIMIT 1 [ RunTime:0.001302s ]
  12. SELECT * FROM `article` WHERE `id` > 494847 ORDER BY `id` ASC LIMIT 1 [ RunTime:0.002203s ]
  13. SELECT * FROM `article` WHERE `id` < 494847 ORDER BY `id` DESC LIMIT 10 [ RunTime:0.031313s ]
  14. SELECT * FROM `article` WHERE `id` < 494847 ORDER BY `id` DESC LIMIT 10,10 [ RunTime:0.082240s ]
  15. SELECT * FROM `article` WHERE `id` < 494847 ORDER BY `id` DESC LIMIT 20,10 [ RunTime:0.047139s ]
0.419790s