Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for Dialogues by brownie57
VOWELS = "aeiou"
class Chat:
def __init__(self):
self.human = None
self.robot = None
self.dialogues = []
def connect_human(self, name):
self.human = name
name.chat = self
def connect_robot(self, number):
self.robot = number
number.chat = self
def show_human_dialogue(self):
return '\n'.join((f'{i[0]} said: {i[1]}' for i in self.dialogues))
def show_robot_dialogue(self):
return '\n'.join((f"{i[0]} said: {''.join(('0' if j in VOWELS else '1' for j in i[1]))}" for i in self.dialogues))
class Human:
def __init__(self, name):
self.name = name
self.chat = None
def send(self, dialogue):
self.chat.dialogues.append((self.name, dialogue))
class Robot:
def __init__(self, number):
self.number = number
self.chat = None
def send(self, dialogue):
self.chat.dialogues.append((self.number, dialogue))
if __name__ == '__main__':
#These "asserts" using only for self-checking and not necessary for auto-testing
chat = Chat()
karl = Human("Karl")
bot = Robot("R2D2")
chat.connect_human(karl)
chat.connect_robot(bot)
karl.send("Hi! What's new?")
bot.send("Hello, human. Could we speak later about it?")
assert chat.show_human_dialogue() == """Karl said: Hi! What's new?
R2D2 said: Hello, human. Could we speak later about it?"""
assert chat.show_robot_dialogue() == """Karl said: 101111011111011
R2D2 said: 10110111010111100111101110011101011010011011"""
print("Coding complete? Let's try tests!")
Dec. 21, 2018