darkshaw
Newbie
- Jan 20, 2019
- 69
- 26
init python:
class Person:
def __init__(self, character, name, trust = 0, happiness = 0):
self.c = character
self.name = name
self.trust = trust
self.happiness = happiness
$ K = Person(Character("Kimura"), "Kimura")
"Lorem Ipsum [K] Lorem Ipsum. ".
How i make K work here?
class Person:
def __init__(self, character, name, trust = 0, happiness = 0):
self.c = character
self.name = name
self.trust = trust
self.happiness = happiness
$ K = Person(Character("Kimura"), "Kimura")
"Lorem Ipsum [K] Lorem Ipsum. ".
How i make K work here?