Commit 31c7dfb4 by BellCodeEditor

auto save

parent 10c76954
Showing with 18 additions and 11 deletions
#"""读取csv文件""""
import csv
with open('report.csv',"r",encoding="utf-8") as f:
f_csv = csv.reader(f)
f_csv = list(f_csv)
pipi = f_csv[7]
print(pipi)
for row in f_csv:
print(row[3])
\ No newline at end of file
import turtle as t
t.pensize(1)
t.penup()
t.goto(-90,0)
t.pendown()
for i in range(3):
t.fd(180)
t.left(120)
t.fd(90)
t.fillcolor("blue")
t.begin_fill()
t.circle(50)
t.end_fill()
t.setheading(90)
t.fd(90*3**0.5)
t.hideturtle()
t.done()
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment