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

Administrator / lesson9_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
Commit 0b67b401 authored 2 years ago by BellCodeEditor's avatar BellCodeEditor
Browse files
Options
  • Browse Files
  • Download
  • Email Patches
  • Plain Diff

save project

parent d7caad54
Hide whitespace changes
Inline Side-by-side
Showing with 6 additions and 2 deletions
  • yy.py
yy.py
View file @ 0b67b401
...@@ -3,5 +3,8 @@ ert={"语文":79,"数学":80,"英语":90} ...@@ -3,5 +3,8 @@ ert={"语文":79,"数学":80,"英语":90}
qwe={"语文":89,"数学":78,"英语":78} qwe={"语文":89,"数学":78,"英语":78}
rshi={"悟空":tyu,"蓝色":ert,"250":qwe} rshi={"悟空":tyu,"蓝色":ert,"250":qwe}
nerrt=input("输入人名") nerrt=input("输入人名")
for t,y in rshi[nerrt].items(): if nerrt in rshi:
print(t,y) for t,y in rshi[nerrt].items():
print(t,y)
else:
print("没有这个")
\ No newline at end of file
This diff is collapsed. Click to expand it.
  • Write
  • Preview
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