Commit 0d3e7239 by BellCodeEditor

auto save

parent d9ee44b9
Showing with 5 additions and 30 deletions
''' with open(r'C:\Users\Administrator\Desktop\sales_list.txt','r',encoding='utf-8') as file:
36题 a=file.readlines()
r=int(input("请输入圆的半径")) for i in a:
print("圆的直径是",2*r) s=i.split()
print("圆的周长是",2*r*3.14) print(s[1:])
print("圆的面积是",r**2*3.14)
'''
import turtle as t
t.penup()
t.goto(0,-200)
t.pendown()
t.circle(200)
t.penup()
t.goto(-100,50)
t.pendown()
t.fillcolor("blue")
t.begin_fill()
t.circle(20)
t.end_fill()
t.penup()
t.goto(100,50)
t.pendown()
t.fillcolor("blue")
t.begin_fill()
t.circle(20)
t.end_fill()
t.penup()
t.goto(0,50)
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