Commit 4e646e19 by BellCodeEditor

auto save

parent 0c8c9c9e
Showing with 10 additions and 1 deletions
This source diff could not be displayed because it is too large. You can view the blob instead.
message = "诺依,周末一起去看动漫展吧!"
print(message[0])
print(message[1])
print(message[2])
for i in message:
print(i)
for i in range(len(message)):
print(message[i])
# 请对message进行遍历,取出所有元素
#print(message[8:12])
# 请对message进行遍历,取出所有元素
\ 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