Advertisement
Karp_xD

Hero

May 16th, 2022
44
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.31 KB | None | 0 0
  1. import random
  2. name = input("What's name of your character")
  3. class Hero:
  4.     cash = 0
  5.     def __init__(self, name):
  6.         self.name = name
  7.         self.health = 100
  8.         self.damage = 1
  9.     @classmethod
  10.     def work(cls):
  11.         salary = random.randint(1, 100)
  12.         cls.cash += salary
  13. hero = Hero(name)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement