当前位置:网站首页>Yyds dry goods inventory has not revealed the artifact? Valentine's Day is coming. Please send her a special gift~
Yyds dry goods inventory has not revealed the artifact? Valentine's Day is coming. Please send her a special gift~
2022-07-02 16:22:00 【It's dream】

Hello, Hello, my name is Dream ah , An interesting Python Blogger , Please go easy on me
2021 Blog star of the year TOP100,2021 Blog star of the year TOP5,Python Quality creators in the field , Welcome to cooperate with me ( At the end of the article VX Want to join the learning exchange group or Learning materials welcome +++)
Introductory notes : This paradise never lacks genius , Hard work is your final ticket !
Last , May we all shine where we can't see , Let's make progress together“ Ten thousand times sad , There will still be Dream, I've been waiting for you in the warmest place ”, It's me ! Ha ha ha ~
Preface : A blink of an eye , Another Valentine's day , Are you still alone this year ?
if
No :
Bless you , keep looking down to the bottom , After reading, the feelings are firm
print(
' Successfully enter the good man level ')
elif
yes :
Hug iron , keep looking down to the bottom , After reading the slip
print(
' Successfully enter the sea king level ')
- 1.
- 2.
- 3.
- 4.
- 5.
- 6.
One 、 Background story
On the eve of Valentine's day , There are also many private letters from friends Dream, Can you help me take it off and place an order , Issue a confession artifact ! Many friends used this last year : python Cross year declaration artifact -- You deserve it !, This year, he successfully joined the sea king , Thank you in succession Dream, Ask me if there is anything else good . A senior old sea king's autobiography ( No ): There are good things ! There are still a lot of it !
So I took the risk of not spending Valentine's day with my girlfriend ,Dream The latest confession artifact was made overnight . It's coming to meet the needs of our friends : Valentine's day exclusive gift , Give it to her who you love most ~ If you don't talk much, see the effect first :




Hey, hey, hey , Is it very nice ah ! Don't worry when you see this , For my Valentine's day , Do you have to give me one button three times first !!!

Now let's talk slowly , Please take a seat in the front row , Take your own popcorn ( give the thumbs-up + A collection is equivalent to a popcorn )
Two 、 The production process
1. Interactive interface
Here we use the definition clear_screen() Function to clear the screen for each animation , Conducive to the next animation display . The overall situation applies turtle library 、time Time bank 、random Random library , as well as tkinter Kuhe threading library .
Installation method :cmd And then directly pip install turtle( The name of the required Library )
# Realization of clean screen
def
clear_screen():
turtle.
penup()
# Brush up
turtle.
goto(
0,
0)
# Locate the (0,0)
turtle.
color(
'white')
turtle.
pensize(
800)
# Brush thickness
turtle.
pendown()
# The paintbrush falls
turtle.
setheading(
0)
# Set orientation
turtle.
fd(
300)
# Forward
turtle.
bk(
600)
# back off
# Initialize the turtle's position
def
go_start(
x,
y,
state):
turtle.
pendown()
if
state
else
turtle.
penup()
turtle.
goto(
x,
y)
# Draw line ,state When true, the turtle returns to the origin , When it's false, it doesn't go back to the original starting point
def
draw_line(
length,
angle,
state):
turtle.
pensize(
1)
turtle.
pendown()
turtle.
setheading(
angle)
turtle.
fd(
length)
turtle.
bk(
length)
if
state
else
turtle.
penup()
turtle.
penup()
- 1.
- 2.
- 3.
- 4.
- 5.
- 6.
- 7.
- 8.
- 9.
- 10.
- 11.
- 12.
- 13.
- 14.
- 15.
- 16.
- 17.
- 18.
- 19.
- 20.
- 21.
- 22.
- 23.
- 24.
2. Draw a little man who emits love
Here are some operations of turtle drawing :
# Draw a picture of a little man who radiates love
def
draw_people(
x,
y):
turtle.
speed(
0)
turtle.
penup()
turtle.
goto(
x,
y)
turtle.
pendown()
turtle.
pensize(
2)
turtle.
color(
'black')
turtle.
setheading(
0)
turtle.
circle(
35,
360)
turtle.
penup()
turtle.
pensize(
3)
turtle.
setheading(
90)
turtle.
fd(
45)
turtle.
setheading(
180)
turtle.
fd(
20)
turtle.
setheading(
0)
turtle.
fd(
35)
turtle.
pendown()
turtle.
circle(
4,
360)
turtle.
penup()
turtle.
goto(
x,
y)
turtle.
pensize(
2)
turtle.
setheading(
0)
turtle.
fd(
20)
turtle.
setheading(
90)
turtle.
fd(
20)
turtle.
setheading(
-
90)
turtle.
pendown()
turtle.
circle(
5,
180)
turtle.
penup()
turtle.
goto(
x,
y)
turtle.
setheading(
-
90)
turtle.
pendown()
turtle.
fd(
20)
turtle.
setheading(
0)
turtle.
fd(
35)
turtle.
setheading(
60)
turtle.
fd(
10)
turtle.
penup()
turtle.
goto(
x,
y)
turtle.
setheading(
-
90)
turtle.
pendown()
turtle.
fd(
40)
turtle.
setheading(
0)
turtle.
fd(
35)
turtle.
setheading(
-
60)
turtle.
fd(
10)
turtle.
penup()
turtle.
goto(
x,
y)
turtle.
setheading(
-
90)
turtle.
pendown()
turtle.
fd(
60)
turtle.
setheading(
-
135)
turtle.
fd(
60)
turtle.
bk(
60)
turtle.
setheading(
-
45)
turtle.
fd(
30)
turtle.
setheading(
-
135)
turtle.
fd(
35)
turtle.
penup()
- 1.
- 2.
- 3.
- 4.
- 5.
- 6.
- 7.
- 8.
- 9.
- 10.
- 11.
- 12.
- 13.
- 14.
- 15.
- 16.
- 17.
- 18.
- 19.
- 20.
- 21.
- 22.
- 23.
- 24.
- 25.
- 26.
- 27.
- 28.
- 29.
- 30.
- 31.
- 32.
- 33.
- 34.
- 35.
- 36.
- 37.
- 38.
- 39.
- 40.
- 41.
- 42.
- 43.
- 44.
- 45.
- 46.
- 47.
- 48.
- 49.
- 50.
- 51.
- 52.
- 53.
- 54.
- 55.
- 56.
- 57.
- 58.
- 59.
- 60.
- 61.
3. Draw an arrow through the heart
The text in this can be modified according to your own needs , You can change it according to your own needs !
# Draw love
def
draw_heart(
size):
turtle.
color(
'red',
'pink')
turtle.
pensize(
2)
turtle.
pendown()
turtle.
setheading(
150)
turtle.
begin_fill()
turtle.
fd(
size)
turtle.
circle(
size
*
-
3.745,
45)
turtle.
circle(
size
*
-
1.431,
165)
turtle.
left(
120)
turtle.
circle(
size
*
-
1.431,
165)
turtle.
circle(
size
*
-
3.745,
45)
turtle.
fd(
size)
turtle.
end_fill()
turtle.
speed(
0)
# Draw arrow feathers
def
draw_feather(
size):
angle
=
30
# The angle of the arrow
feather_num
=
size
/
/
6
# The number of feathers
feather_length
=
size
/
/
3
# The length of the feather
feather_gap
=
size
/
/
10
# The spacing of feathers
for
i
in
range(
feather_num):
draw_line(
feather_gap,
angle
+
180,
False)
# Arrow handle , No
draw_line(
feather_length,
angle
+
145,
True)
# wing , To turn back
draw_line(
feather_length,
angle
+
145,
False)
draw_line(
feather_num
*
feather_gap,
angle,
False)
draw_line(
feather_length,
angle
+
145
+
180,
False)
for
i
in
range(
feather_num):
draw_line(
feather_gap,
angle
+
180,
False)
# Arrow handle , No
draw_line(
feather_length,
angle
-
145,
True)
# wing , To turn back
draw_line(
feather_length,
angle
-
145,
False)
draw_line(
feather_num
*
feather_gap,
angle,
False)
draw_line(
feather_length,
angle
-
145
+
180,
False)
# Draw an arrow through the heart , At last the head of the arrow was not drawn , Use turtles instead of
def
arrow_heart(
x,
y,
size):
go_start(
x,
y,
False)
draw_heart(
size
*
1.15)
turtle.
setheading(
-
150)
turtle.
penup()
turtle.
fd(
size
*
2.2)
draw_heart(
size)
turtle.
penup()
turtle.
setheading(
150)
turtle.
fd(
size
*
2.2)
turtle.
color(
'black')
draw_feather(
size)
turtle.
pensize(
4)
turtle.
setheading(
30)
turtle.
pendown()
turtle.
fd(
size
*
2)
turtle.
penup()
turtle.
setheading(
29)
turtle.
fd(
size
*
5.7)
turtle.
color(
'black')
turtle.
pensize(
4)
turtle.
pendown()
turtle.
fd(
size
*
1.2)
# Show the countdown 3,2,1
def
draw_0(
i):
turtle.
speed(
0)
turtle.
penup()
turtle.
hideturtle()
# Hide arrows to show
turtle.
goto(
-
50,
-
100)
turtle.
color(
'red')
write
=
turtle.
write(
i,
font
=(
' Song style ',
200,
'normal'))
time.
sleep(
1)
# According to the text
def
draw_1():
turtle.
penup()
turtle.
hideturtle()
# Hide arrows to show
turtle.
goto(
-
450,
0)
turtle.
color(
'red')
write
=
turtle.
write(
' baby , Happy Valentine's Day ',
font
=(
' Song style ',
60,
'normal'))
time.
sleep(
2)
# Little people who show love
def
draw_2():
turtle.
speed(
3)
draw_people(
-
250,
20)
turtle.
penup()
turtle.
goto(
-
150,
-
30)
draw_heart(
14)
turtle.
penup()
turtle.
goto(
-
20,
-
60)
draw_heart(
25)
turtle.
penup()
turtle.
goto(
205,
-
100)
draw_heart(
43)
turtle.
hideturtle()
time.
sleep(
2)
def
draw_3():
turtle.
penup()
turtle.
hideturtle()
# Hide arrows to show
turtle.
goto(
-
220,
50)
turtle.
color(
'red')
write
=
turtle.
write(
' baby ',
font
=(
' Song style ',
60,
'normal'))
turtle.
penup()
turtle.
goto(
0,
-
50)
write
=
turtle.
write(
' baby ',
font
=(
' Song style ',
60,
'normal'))
time.
sleep(
2)
# Show an arrow through the heart
def
draw_4():
turtle.
speed(
1)
turtle.
penup()
turtle.
goto(
-
410,
-
200)
turtle.
color(
'pink')
turtle.
pendown()
turtle.
write(
' Princess Kitty Dog King ',
font
=(
'wisdom',
60,
'normal'))
turtle.
speed(
1)
turtle.
penup()
turtle.
color(
"red")
turtle.
goto(
-
31,
-
220)
turtle.
write(
'',
font
=(
'wisdom',
80,
'normal'))
arrow_heart(
20,
-
60,
51)
turtle.
showturtle()
- 1.
- 2.
- 3.
- 4.
- 5.
- 6.
- 7.
- 8.
- 9.
- 10.
- 11.
- 12.
- 13.
- 14.
- 15.
- 16.
- 17.
- 18.
- 19.
- 20.
- 21.
- 22.
- 23.
- 24.
- 25.
- 26.
- 27.
- 28.
- 29.
- 30.
- 31.
- 32.
- 33.
- 34.
- 35.
- 36.
- 37.
- 38.
- 39.
- 40.
- 41.
- 42.
- 43.
- 44.
- 45.
- 46.
- 47.
- 48.
- 49.
- 50.
- 51.
- 52.
- 53.
- 54.
- 55.
- 56.
- 57.
- 58.
- 59.
- 60.
- 61.
- 62.
- 63.
- 64.
- 65.
- 66.
- 67.
- 68.
- 69.
- 70.
- 71.
- 72.
- 73.
- 74.
- 75.
- 76.
- 77.
- 78.
- 79.
- 80.
- 81.
- 82.
- 83.
- 84.
- 85.
- 86.
- 87.
- 88.
- 89.
- 90.
- 91.
- 92.
- 93.
- 94.
- 95.
- 96.
- 97.
- 98.
- 99.
- 100.
- 101.
- 102.
- 103.
- 104.
- 105.
- 106.
- 107.
- 108.
- 109.
- 110.
- 111.
- 112.
- 113.
- 114.
- 115.
- 116.
- 117.
- 118.
- 119.
- 120.
- 121.
- 122.
- 123.
4. Romantic pop-up painting
It's used here tkinter Module to draw a small pop-up window , Finally, I use for Loop to realize the repeatability and randomness of pop-up window , This is also the biggest innovation I think ! A lot of surprises , Full of heart and romance , Ha ha ha .
def
dow():
window
=
tk.
Tk()
width
=
window.
winfo_screenwidth()
height
=
window.
winfo_screenheight()
a
=
random.
randrange(
0,
width)
b
=
random.
randrange(
0,
height)
window.
title(
' baby !')
window.
geometry(
"200x50"
+
"+"
+
str(
a)
+
"+"
+
str(
b))
tk.
Label(
window,
text
=
' I love you baby !',
# Label text
bg
=
'pink',
# The background color
font
=(
'..',
17),
# Font and font size
width
=
18,
height
=
2
# Label length and width
).
pack()
# Fixed window position
window.
mainloop()
number
=[
3,
2,
1]
# Store the countdown number on the display screen 1,2,3
if
__name__
==
'__main__':
turtle.
setup(
900,
500)
# Adjust the size of the canvas
for
i
in
number:
draw_0(
i)
clear_screen()
draw_1()
clear_screen()
draw_2()
clear_screen()
draw_3()
clear_screen()
draw_4()
time.
sleep(
5)
# Pop up settings
threads
= []
for
i
in
range(
200):
# Number of cartridges required
t
=
threading.
Thread(
target
=
dow)
threads.
append(
t)
time.
sleep(
0.01)
threads[
i].
start()
- 1.
- 2.
- 3.
- 4.
- 5.
- 6.
- 7.
- 8.
- 9.
- 10.
- 11.
- 12.
- 13.
- 14.
- 15.
- 16.
- 17.
- 18.
- 19.
- 20.
- 21.
- 22.
- 23.
- 24.
- 25.
- 26.
- 27.
- 28.
- 29.
- 30.
- 31.
- 32.
- 33.
- 34.
- 35.
- 36.
- 37.
- 38.
- 39.
- 40.
3、 ... and 、 The source code to share
Here comes the source code :
# Time : 2022/2/14 12:21
# File : Valentine's Day .py
# Author : yes Dream ah !
# VX : Xu18300396393
# Ten thousand times sad , There will still be Dream, I've been waiting for you in the warmest place !
import
turtle
import
time
import
random
import
tkinter
as
tk
import
threading
# Realization of clean screen
def
clear_screen():
turtle.
penup()
# Brush up
turtle.
goto(
0,
0)
# Locate the (0,0)
turtle.
color(
'white')
turtle.
pensize(
800)
# Brush thickness
turtle.
pendown()
# The paintbrush falls
turtle.
setheading(
0)
# Set orientation
turtle.
fd(
300)
# Forward
turtle.
bk(
600)
# back off
# Initialize the turtle's position
def
go_start(
x,
y,
state):
turtle.
pendown()
if
state
else
turtle.
penup()
turtle.
goto(
x,
y)
# Draw line ,state When true, the turtle returns to the origin , When it's false, it doesn't go back to the original starting point
def
draw_line(
length,
angle,
state):
turtle.
pensize(
1)
turtle.
pendown()
turtle.
setheading(
angle)
turtle.
fd(
length)
turtle.
bk(
length)
if
state
else
turtle.
penup()
turtle.
penup()
# Draw a picture of a little man who radiates love
def
draw_people(
x,
y):
turtle.
speed(
0)
turtle.
penup()
turtle.
goto(
x,
y)
turtle.
pendown()
turtle.
pensize(
2)
turtle.
color(
'black')
turtle.
setheading(
0)
turtle.
circle(
35,
360)
turtle.
penup()
turtle.
pensize(
3)
turtle.
setheading(
90)
turtle.
fd(
45)
turtle.
setheading(
180)
turtle.
fd(
20)
turtle.
setheading(
0)
turtle.
fd(
35)
turtle.
pendown()
turtle.
circle(
4,
360)
turtle.
penup()
turtle.
goto(
x,
y)
turtle.
pensize(
2)
turtle.
setheading(
0)
turtle.
fd(
20)
turtle.
setheading(
90)
turtle.
fd(
20)
turtle.
setheading(
-
90)
turtle.
pendown()
turtle.
circle(
5,
180)
turtle.
penup()
turtle.
goto(
x,
y)
turtle.
setheading(
-
90)
turtle.
pendown()
turtle.
fd(
20)
turtle.
setheading(
0)
turtle.
fd(
35)
turtle.
setheading(
60)
turtle.
fd(
10)
turtle.
penup()
turtle.
goto(
x,
y)
turtle.
setheading(
-
90)
turtle.
pendown()
turtle.
fd(
40)
turtle.
setheading(
0)
turtle.
fd(
35)
turtle.
setheading(
-
60)
turtle.
fd(
10)
turtle.
penup()
turtle.
goto(
x,
y)
turtle.
setheading(
-
90)
turtle.
pendown()
turtle.
fd(
60)
turtle.
setheading(
-
135)
turtle.
fd(
60)
turtle.
bk(
60)
turtle.
setheading(
-
45)
turtle.
fd(
30)
turtle.
setheading(
-
135)
turtle.
fd(
35)
turtle.
penup()
# Draw love
def
draw_heart(
size):
turtle.
color(
'red',
'pink')
turtle.
pensize(
2)
turtle.
pendown()
turtle.
setheading(
150)
turtle.
begin_fill()
turtle.
fd(
size)
turtle.
circle(
size
*
-
3.745,
45)
turtle.
circle(
size
*
-
1.431,
165)
turtle.
left(
120)
turtle.
circle(
size
*
-
1.431,
165)
turtle.
circle(
size
*
-
3.745,
45)
turtle.
fd(
size)
turtle.
end_fill()
turtle.
speed(
0)
# Draw arrow feathers
def
draw_feather(
size):
angle
=
30
# The angle of the arrow
feather_num
=
size
/
/
6
# The number of feathers
feather_length
=
size
/
/
3
# The length of the feather
feather_gap
=
size
/
/
10
# The spacing of feathers
for
i
in
range(
feather_num):
draw_line(
feather_gap,
angle
+
180,
False)
# Arrow handle , No
draw_line(
feather_length,
angle
+
145,
True)
# wing , To turn back
draw_line(
feather_length,
angle
+
145,
False)
draw_line(
feather_num
*
feather_gap,
angle,
False)
draw_line(
feather_length,
angle
+
145
+
180,
False)
for
i
in
range(
feather_num):
draw_line(
feather_gap,
angle
+
180,
False)
# Arrow handle , No
draw_line(
feather_length,
angle
-
145,
True)
# wing , To turn back
draw_line(
feather_length,
angle
-
145,
False)
draw_line(
feather_num
*
feather_gap,
angle,
False)
draw_line(
feather_length,
angle
-
145
+
180,
False)
# Draw an arrow through the heart , At last the head of the arrow was not drawn , Use turtles instead of
def
arrow_heart(
x,
y,
size):
go_start(
x,
y,
False)
draw_heart(
size
*
1.15)
turtle.
setheading(
-
150)
turtle.
penup()
turtle.
fd(
size
*
2.2)
draw_heart(
size)
turtle.
penup()
turtle.
setheading(
150)
turtle.
fd(
size
*
2.2)
turtle.
color(
'black')
draw_feather(
size)
turtle.
pensize(
4)
turtle.
setheading(
30)
turtle.
pendown()
turtle.
fd(
size
*
2)
turtle.
penup()
turtle.
setheading(
29)
turtle.
fd(
size
*
5.7)
turtle.
color(
'black')
turtle.
pensize(
4)
turtle.
pendown()
turtle.
fd(
size
*
1.2)
# Show the countdown 3,2,1
def
draw_0(
i):
turtle.
speed(
0)
turtle.
penup()
turtle.
hideturtle()
# Hide arrows to show
turtle.
goto(
-
50,
-
100)
turtle.
color(
'red')
write
=
turtle.
write(
i,
font
=(
' Song style ',
200,
'normal'))
time.
sleep(
1)
# According to the text
def
draw_1():
turtle.
penup()
turtle.
hideturtle()
# Hide arrows to show
turtle.
goto(
-
450,
0)
turtle.
color(
'red')
write
=
turtle.
write(
' baby , Happy Valentine's Day ',
font
=(
' Song style ',
60,
'normal'))
time.
sleep(
2)
# Little people who show love
def
draw_2():
turtle.
speed(
3)
draw_people(
-
250,
20)
turtle.
penup()
turtle.
goto(
-
150,
-
30)
draw_heart(
14)
turtle.
penup()
turtle.
goto(
-
20,
-
60)
draw_heart(
25)
turtle.
penup()
turtle.
goto(
205,
-
100)
draw_heart(
43)
turtle.
hideturtle()
time.
sleep(
2)
def
draw_3():
turtle.
penup()
turtle.
hideturtle()
# Hide arrows to show
turtle.
goto(
-
220,
50)
turtle.
color(
'red')
write
=
turtle.
write(
' baby ',
font
=(
' Song style ',
60,
'normal'))
turtle.
penup()
turtle.
goto(
0,
-
50)
write
=
turtle.
write(
' baby ',
font
=(
' Song style ',
60,
'normal'))
time.
sleep(
2)
# Show an arrow through the heart
def
draw_4():
turtle.
speed(
1)
turtle.
penup()
turtle.
goto(
-
410,
-
200)
turtle.
color(
'pink')
turtle.
pendown()
turtle.
write(
' Princess Kitty Dog King ',
font
=(
'wisdom',
60,
'normal'))
turtle.
speed(
1)
turtle.
penup()
turtle.
color(
"red")
turtle.
goto(
-
31,
-
220)
turtle.
write(
'',
font
=(
'wisdom',
80,
'normal'))
arrow_heart(
20,
-
60,
51)
turtle.
showturtle()
def
dow():
window
=
tk.
Tk()
width
=
window.
winfo_screenwidth()
height
=
window.
winfo_screenheight()
a
=
random.
randrange(
0,
width)
b
=
random.
randrange(
0,
height)
window.
title(
' baby !')
window.
geometry(
"200x50"
+
"+"
+
str(
a)
+
"+"
+
str(
b))
tk.
Label(
window,
text
=
' I love you baby !',
# Label text
bg
=
'pink',
# The background color
font
=(
'..',
17),
# Font and font size
width
=
18,
height
=
2
# Label length and width
).
pack()
# Fixed window position
window.
mainloop()
number
=[
3,
2,
1]
# Store the countdown number on the display screen 1,2,3
if
__name__
==
'__main__':
turtle.
setup(
900,
500)
# Adjust the size of the canvas
for
i
in
number:
draw_0(
i)
clear_screen()
draw_1()
clear_screen()
draw_2()
clear_screen()
draw_3()
clear_screen()
draw_4()
time.
sleep(
5)
# Pop up settings
threads
= []
for
i
in
range(
200):
# Number of cartridges required
t
=
threading.
Thread(
target
=
dow)
threads.
append(
t)
time.
sleep(
0.01)
threads[
i].
start()
- 1.
- 2.
- 3.
- 4.
- 5.
- 6.
- 7.
- 8.
- 9.
- 10.
- 11.
- 12.
- 13.
- 14.
- 15.
- 16.
- 17.
- 18.
- 19.
- 20.
- 21.
- 22.
- 23.
- 24.
- 25.
- 26.
- 27.
- 28.
- 29.
- 30.
- 31.
- 32.
- 33.
- 34.
- 35.
- 36.
- 37.
- 38.
- 39.
- 40.
- 41.
- 42.
- 43.
- 44.
- 45.
- 46.
- 47.
- 48.
- 49.
- 50.
- 51.
- 52.
- 53.
- 54.
- 55.
- 56.
- 57.
- 58.
- 59.
- 60.
- 61.
- 62.
- 63.
- 64.
- 65.
- 66.
- 67.
- 68.
- 69.
- 70.
- 71.
- 72.
- 73.
- 74.
- 75.
- 76.
- 77.
- 78.
- 79.
- 80.
- 81.
- 82.
- 83.
- 84.
- 85.
- 86.
- 87.
- 88.
- 89.
- 90.
- 91.
- 92.
- 93.
- 94.
- 95.
- 96.
- 97.
- 98.
- 99.
- 100.
- 101.
- 102.
- 103.
- 104.
- 105.
- 106.
- 107.
- 108.
- 109.
- 110.
- 111.
- 112.
- 113.
- 114.
- 115.
- 116.
- 117.
- 118.
- 119.
- 120.
- 121.
- 122.
- 123.
- 124.
- 125.
- 126.
- 127.
- 128.
- 129.
- 130.
- 131.
- 132.
- 133.
- 134.
- 135.
- 136.
- 137.
- 138.
- 139.
- 140.
- 141.
- 142.
- 143.
- 144.
- 145.
- 146.
- 147.
- 148.
- 149.
- 150.
- 151.
- 152.
- 153.
- 154.
- 155.
- 156.
- 157.
- 158.
- 159.
- 160.
- 161.
- 162.
- 163.
- 164.
- 165.
- 166.
- 167.
- 168.
- 169.
- 170.
- 171.
- 172.
- 173.
- 174.
- 175.
- 176.
- 177.
- 178.
- 179.
- 180.
- 181.
- 182.
- 183.
- 184.
- 185.
- 186.
- 187.
- 188.
- 189.
- 190.
- 191.
- 192.
- 193.
- 194.
- 195.
- 196.
- 197.
- 198.
- 199.
- 200.
- 201.
- 202.
- 203.
- 204.
- 205.
- 206.
- 207.
- 208.
- 209.
- 210.
- 211.
- 212.
- 213.
- 214.
- 215.
- 216.
- 217.
- 218.
- 219.
- 220.
- 221.
- 222.
- 223.
- 224.
- 225.
- 226.
- 227.
- 228.
- 229.
- 230.
- 231.
- 232.
- 233.
- 234.
- 235.
- 236.
- 237.
- 238.
- 239.
- 240.
- 241.
- 242.
- 243.
- 244.
- 245.
- 246.
- 247.
- 248.
- 249.
- 250.
- 251.
- 252.
- 253.
- 254.
- 255.
- 256.
- 257.
- 258.
- 259.
- 260.
- 261.
- 262.
- 263.
- 264.
Four 、 Best wishes
I hope everyone can be with the people they like on Valentine's day , Give her the one that belongs to her or His exclusive gift ! Happy everyday , Live your life , I've always been there ~( If you have any questions , Welcome to the comment area or private letter, I ow , I'll see it all !)
5、 ... and 、 Original project document sharing
If you really don't understand Python, Then download the compressed package directly and you can put , One click operation , You need to take it yourself :
Valentine's Day confession artifact exe file + Just run it directly
All right. , That's all I want to share with you today , See you next time !
️️️ If you like , Don't be stingy with your one key triple connection ~


边栏推荐
- Boot connection to impala database
- 中国信通院《数据安全产品与服务图谱》,美创科技实现四大板块全覆盖
- Remove the underline in router link
- End time processing method of wechat v3native payment settings
- What are the necessary functions of short video app development?
- 外企高管、连续创业者、瑜伽和滑雪高手,持续迭代重构的程序人生
- Construction and business practice of Zhongke brain knowledge map platform
- 解决** WARNING ** : Your ApplicationContext is unlikely to start due to a @ComponentScan of the defau
- Yyds dry inventory executor package (parameter processing function)
- IDEA中设置背景图片(超详细)
猜你喜欢

Maui learning road (III) -- in depth discussion of winui3

Typescript array out of order output
![[fluent] dart data type string type (string definition | string splicing | string API call)](/img/7b/cc624aa33f45fbed0bbe354253158b.jpg)
[fluent] dart data type string type (string definition | string splicing | string API call)

【5G NR】RRC连接释放

注册成为harmonyos开发者并安装DevEco Studio 3.0 Beta2 for HarmonyOS

Memory alignment of structure

Mathematical analysis_ Notes_ Chapter 6: Riemann integral of univariate function

数据安全产业系列沙龙(三)| 数据安全产业标准体系建设主题沙龙

Practice of traffic recording and playback in vivo

理想之光不灭
随机推荐
Foreign enterprise executives, continuous entrepreneurs, yoga and skiing masters, and a program life of continuous iteration and reconstruction
Boot 连接 Impala数据库
Usage of group by
Trigger: MySQL implements adding or deleting a piece of data in one table and adding another table at the same time
数学分析_笔记_第5章:一元微分学
day4
AWS virtual machine expansion
潘多拉 IOT 开发板学习(RT-Thread)—— 实验2 RGB LED 实验(学习笔记)
Summary of multithreading and thread synchronization knowledge
请问怎么在oracle视图中使用stustr函数
Remove the underline in router link
dried food! Understand the structural vulnerability of graph convolution networks
一文读懂AGV的关键技术——激光SLAM与视觉SLAM的区别
The difference and usage of calloc, malloc and realloc functions
原神2.6服务端下载以及搭建安装教程
Source code look me
数据安全产业系列沙龙(三)| 数据安全产业标准体系建设主题沙龙
[Xiaobai chat cloud] suggestions on container transformation of small and medium-sized enterprises
源码look me
虚假的暑假