In [1]:
from functions import connect, disconnect
from voice import hello, youre_good, good_job, have_a_nice_day, hot, thank_you, \
woops, game_over, sorry, object_detected, music, \
system_overload, buuuhh, green
from random import choice
connect(12)
In [3]:
hello()
In [4]:
youre_good()
In [5]:
good_job()
In [6]:
have_a_nice_day()
In [7]:
hot()
In [8]:
thank_you()
In [9]:
woops()
In [9]:
game_over()
In [10]:
sorry()
In [11]:
object_detected()
In [12]:
music()
In [13]:
system_overload()
In [14]:
buuuhh()
In [10]:
green()
In [4]:
choice([hello, good_job, game_over, object_detected])()
In [16]:
disconnect()
In [ ]: