Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
Administrator
/
lesson14_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
c80a3b35
authored
2 years ago
by
BellCodeEditor
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
save project
parent
eeb4a4d3
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
7 deletions
diy2.py
diy2.py
View file @
c80a3b35
...
@@ -4,10 +4,10 @@ class hero:
...
@@ -4,10 +4,10 @@ class hero:
self
.
level
=
1
self
.
level
=
1
self
.
hp
=
hp
self
.
hp
=
hp
self
.
attack
=
attack
self
.
attack
=
attack
def
upgrade
(
self
):
def
upgrade
(
self
):
self
.
level
+=
1
self
.
level
+=
1
self
.
hp
+=
50
self
.
hp
+=
50
self
.
attack
+=
4
self
.
attack
+=
4
yase
=
hero
(
"
亚瑟"
,
300
,
2
0
)
yase
=
hero
(
"
后羿"
,
200
,
3
0
)
yase
.
upgrade
()
yase
.
upgrade
()
print
(
"升级后,亚瑟的生命值为:"
,
yase
.
hp
)
print
(
"升级后,后羿的生命值为:"
,
yase
.
hp
)
\ No newline at end of file
\ 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