"git@gitlab.caltech.edu:cs1-24fa/lecture-code.git" did not exist on "42d27acb11665776efb45b99bfe36a9ffc81f04b"
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)