Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
bellcode
/
lesson10-3
This project
Loading...
Sign in
Toggle navigation
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
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
auto save
parent
09b591fe
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
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
,
s
core
in
scores
.
items
():
for
subject
,
s
in
scores
.
items
():
score
+=
s
core
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%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment