Commit ab46891e by BellCodeEditor

auto save

parent a4a1a1fd
Showing with 6298 additions and 11 deletions
import random
message='诺伊,周末一起去看动漫展吧!'
key='你今天拉稀了吗?'
key_message = ""
for i in message:
set1=i
set2=random.choice(key)
set3=random.choice(key)
sde=set1+set2+set3
key_message = key_message+sde
print(key_message)
L_weapon = ["匕首", "刺刀", "M-416", "AK-47", "闪光弹", "烟雾弹", "燃烧瓶"]
print(L_weapon)
L_weapon.pop(1)
print(L_weapon)
L_weapon.remove("M-416")
print(L_weapon)
L_weapon.pop(-2)
print(L_weapon)
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