Commit 9241ec4a by BellCodeEditor

auto save

parent 4e6cfed8
Showing with 0 additions and 45 deletions
for i in range(1,10):
for j in range(1,i+1):
print(i,"x",j,"=",i*j,end=" ")
print()
\ No newline at end of file
a = ["qwe",20,"rty",30,"uio",40,"pas"50]
name = input("dfg")
power = int(input("23"))
for i in range(len(a)):
if power > a[-1]:
a.append(name)
a.append(power)
break
if i%2 == 1 and a[i] >= power:
a.insert(i-1,name)
a.insert(i,power)
break
b = a[-6:]
break(b)
陈玉龙是sb
\ No newline at end of file
This source diff could not be displayed because it is too large. You can view the blob instead.
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