Commit 9199a27a by BellCodeEditor

auto save

parent 9bd8f38f
Showing with 2430 additions and 0 deletions
list1=['Cao','binbin','114514','A wei''jiebrother','door','van','dark']
list1.insert(8,'DaDianDong')
print(list1)
list1.pop(0)
print(list1)
list1.append("GV")
print(list1)
list1.remove('binbin')
print(list1)
list1.clear()
print(list1)
if '114514' in list1:
print('Boy next door')
else:
print('not good,gay')
def gay(van):
print("Hallo,"+van)
gay("张三")
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