Commit 2ab6d0cc by BellCodeEditor

auto save

parent 7788329f
Showing with 20 additions and 4 deletions
import os
filelist = os.listdir('C:\\Users\\Administrator\\Desktop\\text')
print(filelist)
\ No newline at end of file
f = input('请输入爸爸的身高')
m = input('请输入妈妈的身高')
s = input('请输入性别')
f = float(f)
m = float(m)
s = float(s)
h = (f+m+13*s)/2
print(h)
\ No newline at end of file
import turtle
turtle.goto(0,0)
turtle.circle(40)
turtle.goto(80,0)
turtle.circle(40)
turtle.pendown()
turtle.goto(0,-80)
turtle.circle(40)
turtle.goto(80,-80)
turtle.circle(40)
\ 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