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

bellcode / lesson10-3

  • 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 c01f0e1a authored 3 years ago by BellCodeEditor's avatar BellCodeEditor
Browse files
Options
  • Browse Files
  • Download
  • Email Patches
  • Plain Diff

auto save

parent 09b591fe
Hide whitespace changes
Inline Side-by-side
Showing with 26 additions and 2 deletions
  • diy1.py
  • ss.py
  • z.py
diy1.py
View file @ c01f0e1a
...@@ -5,8 +5,8 @@ scores = {'语文':89, '数学':95, '英语':80} ...@@ -5,8 +5,8 @@ scores = {'语文':89, '数学':95, '英语':80}
def get_average(scores): def get_average(scores):
score = 0 score = 0
for subject, score in scores.items(): for subject, s in scores.items():
score += score score += s
print('现在的总分是%d'%score) print('现在的总分是%d'%score)
ave_score = score/len(scores) ave_score = score/len(scores)
print('平均分是%d'%ave_score) print('平均分是%d'%ave_score)
......
This diff is collapsed. Click to expand it.
ss.py 0 → 100644
View file @ c01f0e1a
import tkinter as Tkinter
from tkinter import *
if __name__ == '__main__':
window = Tkinter.Tk()
window.geometry('405x320+250+15')
window.title(' 滚 动 抽 奖 器')
bg_label = Label(window, width=70, height=33, bg='#ECf5FF')
bg_label.place(anchor=NW, x=0, y=0)
def lottery_roll(var1, var2):
global going
show_member = random.choice(data)
var1.set(show_member)
if going:
window.after(50, lottery_roll, var1, var2)
else:
var2.set('恭喜 {} !!!'.format(show_member))
going = True
return
window.after(50, lottery_roll, 'var1', 'var2')
\ No newline at end of file
This diff is collapsed. Click to expand it.
z.py 0 → 100644
View file @ c01f0e1a
q=["真丑"]
\ 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