Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
Administrator
/
lesson14_1
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
db109bcc6535bfed8bfbd0925b040c70ab2ed03a
Switch branch/tag
lesson14_1
diy.py
Find file
Normal view
History
Permalink
diy.py
132 Bytes
Edit
Newer
Older
save project
2cced8ed
BellCodeEditor
committed
2 years ago
1
2
3
4
5
6
7
class
Hero
:
def
__init__
(
self
):
self
.
level
=
1
self
.
hp
=
300
self
.
attack
=
20
yase
=
Hero
()
print
(
yase
.
hp
)