Signed-off-by: 10_2 <sairate@sina.cn>

This commit is contained in:
10_2 2024-12-28 14:09:50 +08:00
commit 0c56f8a257
9 changed files with 81 additions and 0 deletions

8
.idea/.gitignore vendored Normal file
View File

@ -0,0 +1,8 @@
# 默认忽略的文件
/shelf/
/workspace.xml
# 基于编辑器的 HTTP 客户端请求
/httpRequests/
# Datasource local storage ignored files
/dataSources/
/dataSources.local.xml

View File

@ -0,0 +1,6 @@
<component name="InspectionProjectProfileManager">
<settings>
<option name="USE_PROJECT_PROFILE" value="false" />
<version value="1.0" />
</settings>
</component>

7
.idea/misc.xml Normal file
View File

@ -0,0 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="Black">
<option name="sdkName" value="Python 3.12" />
</component>
<component name="ProjectRootManager" version="2" project-jdk-name="Python 3.12 (钟淇奕)" project-jdk-type="Python SDK" />
</project>

8
.idea/modules.xml Normal file
View File

@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="ProjectModuleManager">
<modules>
<module fileurl="file://$PROJECT_DIR$/.idea/钟淇奕.iml" filepath="$PROJECT_DIR$/.idea/钟淇奕.iml" />
</modules>
</component>
</project>

10
.idea/钟淇奕.iml Normal file
View File

@ -0,0 +1,10 @@
<?xml version="1.0" encoding="UTF-8"?>
<module type="PYTHON_MODULE" version="4">
<component name="NewModuleRootManager">
<content url="file://$MODULE_DIR$">
<excludeFolder url="file://$MODULE_DIR$/venv" />
</content>
<orderEntry type="jdk" jdkName="Python 3.12 (钟淇奕)" jdkType="Python SDK" />
<orderEntry type="sourceFolder" forTests="false" />
</component>
</module>

1
11.16.py Normal file
View File

@ -0,0 +1 @@

4
12.28.py Normal file
View File

@ -0,0 +1,4 @@
name='钟淇奕'
age=9
print("你的名字叫name")
print("你的")

0
main.py Normal file
View File

37
test.py Normal file
View File

@ -0,0 +1,37 @@
import turtle
t=turtle.Turtle()
t.speed(0)
t.color("red","red")
t.begin_fill()
t.penup
t.goto(-300,200)
t.pendown
t.goto(300,200)
t.goto(300,-200)
t.goto(-300,-200)
t.goto(-300,200)
t.end_fill()
def hua(size,x,y,angle=0):
t.penup()
t.goto(x,y)
t.setheading(angle)
t.pendown()
t.color("yellow","yellow")
t.begin_fill()
for i in range(5):
t.forward(size)
t.right(144)
t.forward(size)
t.left(72)
t.end_fill()
hua(30, -250, 150)
hua(9, -150, 180, 30)
hua(9, -130, 130, 45)
hua(9, -140, 80, 0)
hua(9, -200, 50, -30)
t.penup()
t.goto(0,-300)
t.pencolor("black")
t.pendown()
t.write('中国',font=("楷体","20","normal"))
turtle.done()