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

bellcode / lesson2-5_DIY1

  • 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
  • lesson2-5_DIY1
  • jk.py
Find file
BlameHistoryPermalink
  • BellCodeEditor's avatar
    save project · 28255355
    BellCodeEditor committed 3 years ago
    28255355
jk.py 669 Bytes
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
score={
    'monky':{'天书':91,'输血':88,'银阁里希':85},
    'noi':{'天书':99,'输血':96,'银阁里希':90},
    'beanbean':{'天书':91,'输血':90,'银阁里希':12}}
while True:
    print('请输入要揍得人的名字,退出请按w')
    str=input('你要揍扁谁?')
    if str in score:
        m=score[str]
        print(str+'同学的罪证如下')
        for k,v in m.items():
            
            print(k,v)
            print('**********************')
    elif str=='w':
        
        break    
    else:
        print('哈哈哈差个成绩都不会煞笔煞笔,再输')
        print('***************************')