Commit 32b26945 by BellCodeEditor

save project

parent bbf75fd2
Showing with 8 additions and 5 deletions
for i in range(1,10):
for j in range(1,i+1):
print(str(j)+"X"+str(i)+"="+str(j*i),end=" ")
print()
\ No newline at end of file
students = ["1","八戒","2","3"]
students.remove("八戒")
students.insert(3,"诺一")
red=students[0:3]
blue=students[2:4]
print(red)
print(blue)
\ 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