Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
Administrator
/
lesson14_2
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
7714e904
authored
Sep 24, 2022
by
BellCodeEditor
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
save project
parent
bf8eb93a
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
14 deletions
diy2.py
diy2.py
View file @
7714e904
...
@@ -4,20 +4,19 @@ class MC:
...
@@ -4,20 +4,19 @@ class MC:
self
.
name
=
name
self
.
name
=
name
self
.
hp
=
hp
self
.
hp
=
hp
self
.
attack
=
attack
self
.
attack
=
attack
def
upgrade
(
self
):
self
.
level
=
self
.
level
+
1
self
.
hp
=
self
.
hp
*
2
self
.
attack
=
self
.
attack
*
2
Steve
=
MC
(
"史蒂夫"
,
50
,
1500000000
)
Steve
=
MC
(
"史蒂夫"
,
50
,
1500000000
)
Alex
=
MC
(
"艾利克斯"
,
50
,
150000000
)
Alex
=
MC
(
"艾利克斯"
,
50
,
150000000
)
Steve
.
upgrade
()
Alex
.
upgrade
()
print
(
"史蒂夫的等级是"
,
Steve
.
level
)
print
(
"史蒂夫的血量是"
,
Steve
.
hp
)
print
(
"史蒂夫的攻击力是"
,
Steve
.
attack
)
print
(
"史蒂夫的攻击力是"
,
Steve
.
attack
)
print
(
"艾力克斯的等级是"
,
Alex
.
level
)
print
(
"艾力克斯的血量是"
,
Alex
.
hp
)
print
(
"艾力克斯的攻击力是"
,
Alex
.
attack
)
print
(
"艾力克斯的攻击力是"
,
Alex
.
attack
)
def
upgrade
():
Steve
.
level
=
Steve
.
level
+
1
Steve
.
hp
=
Steve
.
hp
*
2
Steve
.
attack
=
Steve
.
attack
*
2
upgrade
()
upgrade
()
def
a
():
Alex
.
level
=
Alex
.
level
+
1
Alex
.
hp
=
Alex
.
hp
*
2
Alex
.
attack
=
Alex
.
attack
*
2
a
()
a
()
\ No newline at end of file
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