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

Administrator / lesson7_7

  • 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_7
  • diy.py
Find file
BlameHistoryPermalink
  • BellCodeEditor's avatar
    save project · b91d3c79
    BellCodeEditor committed 4 years ago
    b91d3c79
diy.py 208 Bytes
1 2 3 4 5 6 7 8
import random
for d in range(4): 
    i = input("请输入:")
    li_text = list(i)
    mnu = random.randint(0,len(li_text))
    li_text.insert(mnu,"ldsufjgfv")
    abc= "".join(li_text)
    print(abc)