Commit e0530212 by BellCodeEditor

save project

parent ce251c1a
Showing with 10 additions and 4 deletions
for i in range(1,10):
for j in range(1,i+1):
print(i,'*',j,'=',(j*i),end=" ")
print()
S=["悟空","小贝","八戒","波奇"]
S.remove("八戒")
print(S)
S.insert(3,"诺依")
print(S)
red=S[0:2]
blue=S[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