Commit 0a02cb12 by BellCodeEditor

auto save

parent f47689a4
Showing with 15 additions and 0 deletions
a=int(input("请输入一个数字:"))
a+=13
while a<30:
a+=13
a=a%2
print(a)
\ No newline at end of file
name = ["梁","魏","梁","伍"]
name.append("hello")
name.insert(1,2)
name.pop(1)
name.remove("梁")
print(name.count("梁"))
print(len(name))
\ 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