Commit 74c9b745 by BellCodeEditor

save project

parent ccfa0e9a
Showing with 14 additions and 10 deletions
import random
k = 'sb,真牛逼!'
m = '诺依,周末一起去看动漫展吧!'
k = '牛的傻'
m = '妈逼逼'
k_m=''
for i in range(len(m)):
a=m[i]
b=random.choice(k)
c=random.choice(k)
d=a+b+c
k_m=k_m+d
print(k_m)
\ No newline at end of file
n = 'sb!!sb!!sb!!SB!!sb!!sb!!sb!!'
for i in m:
a = i
b = random.choice(k)
c = random.choice(k)
d = a+b+c
k_m = k_m+d
l_m = list(k_m)
l_m.insert(5,n)
r_m = ''.join(l_m)
print(r_m)
\ 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