Skip to content
  • P
    Projects
  • G
    Groups
  • S
    Snippets
  • Help

Administrator / lesson7_2

  • This project
    • Loading...
  • Sign in
Go to a project
  • Project
  • Repository
  • Issues 0
  • Merge Requests 0
  • Pipelines
  • Wiki
  • Snippets
  • Members
  • Activity
  • Graph
  • Charts
  • Create a new issue
  • Jobs
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Branches
  • Tags
  • Contributors
  • Graph
  • Compare
  • Charts
Switch branch/tag
  • lesson7_2
  • diy2.py
Find file
BlameHistoryPermalink
  • BellCodeEditor's avatar
    save project · 247c33dc
    BellCodeEditor committed 3 years ago
    247c33dc
diy2.py 273 Bytes
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
import random
k='hjstkfhsjkshfshfshfskjsnfjhsf'
m='lmfkfmfklfklfklmkfkfk'
k_m=""
n="f'.]\;.l.,';\^%$&*#$@@$^)"
for i in m:
    s1=i
    s2=random.choice(k)
    s3=random.choice(k)
    t=s1+s2+s3
    k_m=k_m+t
l_m=list(k_m)
l_m.inseft(0,len(k_m))
r_m="".join(l_m)
print(r_m)