Commit c9207014 by BellCodeEditor

auto save

parent cd37d40d
Showing with 34 additions and 0 deletions
a=int(input("请输入总秒数:"))
b=(a//3600)
c=(a%3600//60)
d=(a%3600)
print(str(b)+" "+str(c)+" "+str(d))
\ No newline at end of file
import turtle as t
def polygon(n,s):
for i in range(n):
t.fd(s)
t.left(360/n)
t.done()
polygon(3,100000)
\ No newline at end of file
for i in range(1,10,2):
print(i)
print()
for a in range(2,20,2):
print(a)
print()
for j in range(1,10):
for i in range(1,j+1):
print(f'{j}*{i}={j*i}',end=' ')
print()
a=0
for i in range(1,51):
a=
print(a)
\ 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