Commit 365dc58f by BellCodeEditor

auto save

parent 35f55b44
Pipeline #11500 failed in 0 seconds
Showing with 10 additions and 1 deletions
message="白日依山尽"
length=len(message)
i=0
while i <length:
element=message[i]
print(element)
i+=1
\ No newline at end of file
...@@ -3,7 +3,7 @@ s.remove("八戒") ...@@ -3,7 +3,7 @@ s.remove("八戒")
print(s) print(s)
s.append("诺伊") s.append("诺伊")
print(s) print(s)
red =s[2] red =s[:2]
blue = s[2:] blue = s[2:]
print(red) print(red)
print(blue) 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