"git@gitlab.caltech.edu:cs24-19fa/git_rec_nano.git" did not exist on "b39db7bc63ced20a256a0ba5eaf767fb415f6dba"
main.py 374 Bytes
from util import play, play_with_voice

HELLO_SCRIPT = "Welcome to your first day at Caltech!"
ADVICE_SCRIPT = "My most important advice is \"go to office hours, and try to get to know your professors\"."
# play(ADVICE_SCRIPT)


which = input("What do you want to do? ")
if which == "speak":
    play_with_voice(HELLO_SCRIPT, "Joanna")

print(1.1 + 5)
x = print(5)
print(x)